# HG changeset patch # User Benjamin Golinvaux # Date 1580131929 -3600 # Node ID 19966d29968506773f90b733b6e34559839ca5c7 # Parent 70398cc7aa15ae6036214bd4ca16919f506eb163 Fixed typo in function impl name diff -r 70398cc7aa15 -r 19966d299685 Core/Logging.cpp --- a/Core/Logging.cpp Sat Jan 25 12:04:45 2020 +0100 +++ b/Core/Logging.cpp Mon Jan 27 14:32:09 2020 +0100 @@ -553,7 +553,7 @@ } } - bool IsInfoLevelEnable() + bool IsInfoLevelEnabled() { boost::mutex::scoped_lock lock(loggingMutex_); assert(loggingContext_.get() != NULL); @@ -575,7 +575,7 @@ } } - bool IsTraceLevelEnable() + bool IsTraceLevelEnabled() { boost::mutex::scoped_lock lock(loggingMutex_); assert(loggingContext_.get() != NULL);