Corrected return value of utility function
authorPhilip Rauwolf <rauwolf@itestra.de>
Wed, 16 Oct 2013 08:41:43 +0000 (10:41 +0200)
committerPhilip Rauwolf <rauwolf@itestra.de>
Wed, 16 Oct 2013 08:41:43 +0000 (10:41 +0200)
src/CommonAPI/ContainerUtils.cpp

index cfe6914..08fe2bc 100644 (file)
@@ -14,7 +14,7 @@ size_t SharedPointerClientIdContentHash::operator()(const std::shared_ptr<Client
     if (t) {
         return t->hashCode();
     } else {
-        return NULL;
+        return 0;
     }
 }