aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2023-11-08 00:04:47 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2023-11-08 00:04:47 +0100
commit1cf1cbdeb6542bd84631aad950c02d951af319a4 (patch)
tree045f77f57cf10631eb4b408c7324edf8eec077c5
parentb1c6167e7909bc510b1ca1082ae2ceb8fb3c06c6 (diff)
downloadcpp-utils-1cf1cbdeb6542bd84631aad950c02d951af319a4.tar.gz
cpp-utils-1cf1cbdeb6542bd84631aad950c02d951af319a4.zip
mutex: fix include guard name
-rw-r--r--owning_mutex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/owning_mutex.h b/owning_mutex.h
index 82756da..f39b2d0 100644
--- a/owning_mutex.h
+++ b/owning_mutex.h
@@ -1,5 +1,5 @@
-#ifndef UTILS_MUTEX_H
-#define UTILS_MUTEX_H
+#ifndef UTILS_OWNING_MUTEX_H
+#define UTILS_OWNING_MUTEX_H
#include <mutex>