1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into devel

This commit is contained in:
Jan Steemann 2015-08-04 14:32:42 +02:00
commit a2d75cd9c8
2 changed files with 7 additions and 2 deletions

View File

@ -43,6 +43,11 @@
#include "Basics/StringUtils.h"
#include "VocBase/server.h"
#ifdef _WIN32
// turn off warnings about too long type name for debug symbols blabla in MSVC only...
#pragma warning(disable : 4503)
#endif
using namespace std;
using namespace triagens::arango;
using triagens::basics::JsonHelper;

View File

@ -1,4 +1,4 @@
////////////////////////////////////////////////////////////////////////////////
> ////////////////////////////////////////////////////////////////////////////////
/// @brief vocbase context
///
/// @file
@ -59,7 +59,7 @@ static triagens::basics::Mutex SidLock;
#ifdef _WIN32
// turn off warnings about too long type name for debug symbols blabla in MSVC only...
#pragma warning(disable : 4503)
#pragma warning(disable : 4503)
#endif
typedef std::unordered_map<std::string, std::pair<std::string, double>> DatabaseSessionsType;