diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2019-09-17 15:31:01 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2019-09-17 15:45:53 +0200 |
commit | dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01 (patch) | |
tree | de36ffe4cfa36fc7fc58bf2e4d0f19983c001150 | |
parent | 0c6dac57f24113be318484cd513f153ee658b261 (diff) | |
download | astra-dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01.tar.gz astra-dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01.tar.bz2 astra-dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01.tar.xz astra-dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01.zip |
Fix clang build
-rw-r--r-- | src/Config.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Config.cpp b/src/Config.cpp index de5b42e..9420e1f 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -39,9 +39,10 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. #include "astra/Logging.h" #include <sstream> -using namespace astra; using namespace std; +namespace astra { + //----------------------------------------------------------------------------- // default constructor Config::Config() : self() @@ -180,3 +181,4 @@ template class ConfigStackCheck<CVolumeGeometry3D>; template class ConfigStackCheck<CProjector2D>; template class ConfigStackCheck<CProjector3D>; +} |