Include <iostream> without the .h on modern C++
This commit is contained in:
parent
3984d5a45b
commit
adf14ccd77
|
|
@ -31,7 +31,11 @@
|
|||
|
||||
#include "Options.h"
|
||||
#include <stdlib.h>
|
||||
#if defined(linux)
|
||||
#include <iostream>
|
||||
#else
|
||||
#include <iostream.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <pwd.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -75,7 +75,11 @@
|
|||
#include "dtappgather.h"
|
||||
#include "DirIterator.h"
|
||||
#include <stdlib.h>
|
||||
#if defined(linux)
|
||||
#include <iostream>
|
||||
#else
|
||||
#include <iostream.h>
|
||||
#endif
|
||||
|
||||
Options * options;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue