X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a9919f554fd42fdb9a26defe86adbb1c3cfa59bd..a9361ff5f9057e93ed0bbdfac0eab6e5ba8aeab8:/src/surf/PropertyHolder.cpp diff --git a/src/surf/PropertyHolder.cpp b/src/surf/PropertyHolder.cpp index 97331c6632..b57e536e44 100644 --- a/src/surf/PropertyHolder.cpp +++ b/src/surf/PropertyHolder.cpp @@ -18,10 +18,10 @@ PropertyHolder::~PropertyHolder() { xbt_dict_free(&properties_); } -/** @brief Return the property associated to the provided key (or NULL if not existing) */ +/** @brief Return the property associated to the provided key (or nullptr if not existing) */ const char *PropertyHolder::getProperty(const char*key) { - if (properties_ == NULL) - return NULL; + if (properties_ == nullptr) + return nullptr; return (const char*) xbt_dict_get_or_null(properties_,key); }