diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-11 19:20:07 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-11 19:20:07 +0100 |
commit | 267aa681af9e250208f79488d90d2a51146b48a8 (patch) | |
tree | 41305f91d0d90bfdf76baa96b70c55b8a79425e2 /extensions | |
parent | bf03aa3bf4315c618ae13ddbaef30baea2430cc5 (diff) |
Avoid confusion between boost::vector and std::vector
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/servprov.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/source/ole/servprov.cxx b/extensions/source/ole/servprov.cxx index 15ab439f1739..958a6c8de913 100644 --- a/extensions/source/ole/servprov.cxx +++ b/extensions/source/ole/servprov.cxx @@ -29,6 +29,8 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_extensions.hxx" +#include <vector> + #ifdef __MINGW32__ #define INITGUID #include <initguid.h> @@ -53,7 +55,6 @@ extern CComModule _Module; #include <tools/postsys.h> -using namespace std; using namespace cppu; using namespace rtl; using namespace osl; |