no using namespace
in header file
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4137 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
49739cf0af
commit
9f5e637d21
2 changed files with 4 additions and 3 deletions
|
@ -29,6 +29,8 @@
|
|||
# include <errno.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// Utilities
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -28,10 +28,9 @@
|
|||
#endif // _MSC_VER > 1000
|
||||
|
||||
#include "Platform.h"
|
||||
#include <vector>
|
||||
|
||||
#include <vector>
|
||||
#include <stdexcept>
|
||||
using namespace std;
|
||||
|
||||
#define EXTENDED_DIALOG ((DWORD) 0xFFFF0001)
|
||||
|
||||
|
@ -162,7 +161,7 @@ private:
|
|||
unsigned int m_uCodePage;
|
||||
|
||||
// Items vector
|
||||
vector<DialogItemTemplate*> m_vItems;
|
||||
std::vector<DialogItemTemplate*> m_vItems;
|
||||
};
|
||||
|
||||
#endif // !defined(AFX_DIALOGTEMPLATE_H__C5A973AF_0F56_4BEC_814A_79318E2EB4AC__INCLUDED_)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue