Skip to content

Commit 57f2f3c

Browse files
committed
Avoid "using namespace std" for compatibility with Windows
1 parent 7106ea1 commit 57f2f3c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

gds2pov/config_cfg.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
#include <gds2x.h>
2929
#include <gdsparse.h>
3030

31-
using namespace std;
32-
3331
typedef enum {
3432
ptNone,
3533
ptCamera,
@@ -69,7 +67,7 @@ class GDSConfig
6967

7068
Position m_camerapos;
7169
Position m_lookatpos;
72-
vector<Position *> m_lights;
70+
std::vector<Position *> m_lights;
7371
Position *m_currentlight;
7472

7573
public:

0 commit comments

Comments
 (0)