mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-12 14:20:04 +00:00
Fixed a compiler warning.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10178
This commit is contained in:
@@ -569,7 +569,7 @@ class BlockingCounter {
|
||||
public:
|
||||
explicit BlockingCounter(int initial_count) :
|
||||
count_(initial_count) {}
|
||||
bool DecrementCount() {
|
||||
void DecrementCount() {
|
||||
MutexLock lock(&mu_);
|
||||
count_--;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user