From b5b9c95de160a97701777d37187de194d0b29e61 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 2 Jan 2022 19:55:40 +0000 Subject: Replace include guard macros with pragma once --- lib/strings.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/strings.hpp') diff --git a/lib/strings.hpp b/lib/strings.hpp index ee0db95..9dca9ac 100644 --- a/lib/strings.hpp +++ b/lib/strings.hpp @@ -1,5 +1,6 @@ -#ifndef STRINGS_HPP -#define STRINGS_HPP +#pragma once + +#include constexpr auto constexpr_strlen(const GLchar * const s) @@ -10,5 +11,3 @@ constexpr_strlen(const GLchar * const s) } return ch; } - -#endif -- cgit v1.2.3