]> AND Public Git Repository - simgrid.git/blobdiff - src/mc/mc_hash.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove (void) in C++
[simgrid.git] / src / mc / mc_hash.cpp
index 72dd93cfac780057067e15e4ed96b8cc69f51a70..8e9dc17fca05a3278d543f3dbf0471eb902471ef 100644 (file)
@@ -24,7 +24,8 @@ namespace mc {
 namespace {
 
 class djb_hash {
-  hash_type state_ = 5381ll;
+  hash_type state_ = 5381LL;
+
 public:
   template<class T>
   void update(T& x)