summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2019-09-17 15:31:01 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2019-09-17 15:45:53 +0200
commitdbd2b88f498ecefdd8f4175fb0f44dfe47c68b01 (patch)
treede36ffe4cfa36fc7fc58bf2e4d0f19983c001150 /src
parent0c6dac57f24113be318484cd513f153ee658b261 (diff)
downloadastra-dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01.tar.gz
astra-dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01.tar.bz2
astra-dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01.tar.xz
astra-dbd2b88f498ecefdd8f4175fb0f44dfe47c68b01.zip
Fix clang build
Diffstat (limited to 'src')
-rw-r--r--src/Config.cpp4
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>;
+}