diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-02-16 14:37:44 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-02-16 14:37:44 +0100 |
commit | 27e23f29f368e06315f2ea381ef38a3affa93c64 (patch) | |
tree | 0cac9c94878909bb1eff59c8d4ae3e9b815aa76e /include/astra/Globals.h | |
parent | f591df5ff62deb8de2956cc8200db4034fb6ea05 (diff) | |
download | astra-27e23f29f368e06315f2ea381ef38a3affa93c64.tar.gz astra-27e23f29f368e06315f2ea381ef38a3affa93c64.tar.bz2 astra-27e23f29f368e06315f2ea381ef38a3affa93c64.tar.xz astra-27e23f29f368e06315f2ea381ef38a3affa93c64.zip |
Remove using namespace std; from headers
Diffstat (limited to 'include/astra/Globals.h')
-rw-r--r-- | include/astra/Globals.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/astra/Globals.h b/include/astra/Globals.h index 44a77b0..8375726 100644 --- a/include/astra/Globals.h +++ b/include/astra/Globals.h @@ -65,9 +65,9 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. #define ASTRA_ASSERT(a) assert(a) -#define ASTRA_CONFIG_CHECK(value, type, msg) if (!(value)) { cout << "Configuration Error in " << type << ": " << msg << endl; return false; } +#define ASTRA_CONFIG_CHECK(value, type, msg) if (!(value)) { std::cout << "Configuration Error in " << type << ": " << msg << std::endl; return false; } -#define ASTRA_CONFIG_WARNING(type, msg) { cout << "Warning in " << type << ": " << msg << endl; } +#define ASTRA_CONFIG_WARNING(type, msg) { std::cout << "Warning in " << type << ": " << msg << sdt::endl; } #define ASTRA_DELETE(a) if (a) { delete a; a = NULL; } |