mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/arangodb/arangodb into devel
This commit is contained in:
commit
a2d75cd9c8
|
@ -43,6 +43,11 @@
|
||||||
#include "Basics/StringUtils.h"
|
#include "Basics/StringUtils.h"
|
||||||
#include "VocBase/server.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 std;
|
||||||
using namespace triagens::arango;
|
using namespace triagens::arango;
|
||||||
using triagens::basics::JsonHelper;
|
using triagens::basics::JsonHelper;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
> ////////////////////////////////////////////////////////////////////////////////
|
||||||
/// @brief vocbase context
|
/// @brief vocbase context
|
||||||
///
|
///
|
||||||
/// @file
|
/// @file
|
||||||
|
@ -59,7 +59,7 @@ static triagens::basics::Mutex SidLock;
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
// turn off warnings about too long type name for debug symbols blabla in MSVC only...
|
// turn off warnings about too long type name for debug symbols blabla in MSVC only...
|
||||||
#pragma warning(disable : 4503)
|
#pragma warning(disable : 4503)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef std::unordered_map<std::string, std::pair<std::string, double>> DatabaseSessionsType;
|
typedef std::unordered_map<std::string, std::pair<std::string, double>> DatabaseSessionsType;
|
||||||
|
|
Loading…
Reference in New Issue