diff options
author | louiz’ <louiz@louiz.org> | 2016-07-04 17:53:53 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-07-04 17:53:53 +0200 |
commit | 81f8f45b371d1a0ef72c2768fbd1f9188fe83616 (patch) | |
tree | c885946618afef4e6569a4fbb438e10447e1da4e /src/utils | |
parent | 5321d29cbda7d69d306f36d0f84d2c599c85c90e (diff) | |
download | biboumi-81f8f45b371d1a0ef72c2768fbd1f9188fe83616.tar.gz biboumi-81f8f45b371d1a0ef72c2768fbd1f9188fe83616.tar.bz2 biboumi-81f8f45b371d1a0ef72c2768fbd1f9188fe83616.tar.xz biboumi-81f8f45b371d1a0ef72c2768fbd1f9188fe83616.zip |
Replace all include guards by #pragma once
It’s $CURRENT_YEAR
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/empty_if_fixed_server.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/empty_if_fixed_server.hpp b/src/utils/empty_if_fixed_server.hpp index 8739fd9..9ccf5fd 100644 --- a/src/utils/empty_if_fixed_server.hpp +++ b/src/utils/empty_if_fixed_server.hpp @@ -1,5 +1,5 @@ -#ifndef EMPTY_IF_FIXED_SERVER_HPP_INCLUDED -#define EMPTY_IF_FIXED_SERVER_HPP_INCLUDED +#pragma once + #include <string> @@ -23,4 +23,4 @@ namespace utils } -#endif /* EMPTY_IF_FIXED_SERVER_HPP_INCLUDED */ + |