summaryrefslogtreecommitdiff
path: root/src/threading
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-08-17 22:19:39 +0200
committerGitHub <noreply@github.com>2017-08-17 22:19:39 +0200
commit921151d97a2fb2238ab514324fb95e2732248b96 (patch)
tree0723ab1f2c4df22492b4c2221d2974020d4dfd3d /src/threading
parentc738d1eeabbbe9164a25f6b69bc7ec1a3b44b051 (diff)
downloadminetest-921151d97a2fb2238ab514324fb95e2732248b96.tar.gz
minetest-921151d97a2fb2238ab514324fb95e2732248b96.tar.bz2
minetest-921151d97a2fb2238ab514324fb95e2732248b96.zip
C++ modernize: Pragma once (#6264)
* Migrate cpp headers to pragma once
Diffstat (limited to 'src/threading')
-rw-r--r--src/threading/event.h5
-rw-r--r--src/threading/semaphore.h5
2 files changed, 2 insertions, 8 deletions
diff --git a/src/threading/event.h b/src/threading/event.h
index af91d04c7..ac6bd5129 100644
--- a/src/threading/event.h
+++ b/src/threading/event.h
@@ -23,8 +23,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
-#ifndef THREADING_EVENT_H
-#define THREADING_EVENT_H
+#pragma once
#include <condition_variable>
@@ -45,5 +44,3 @@ private:
std::mutex mutex;
bool notified = false;
};
-
-#endif
diff --git a/src/threading/semaphore.h b/src/threading/semaphore.h
index 8ff376666..76a8f48a6 100644
--- a/src/threading/semaphore.h
+++ b/src/threading/semaphore.h
@@ -17,8 +17,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#ifndef THREADING_SEMAPHORE_H
-#define THREADING_SEMAPHORE_H
+#pragma once
#if defined(_WIN32)
#include <windows.h>
@@ -51,5 +50,3 @@ private:
DISABLE_CLASS_COPY(Semaphore);
};
-
-#endif