From 921151d97a2fb2238ab514324fb95e2732248b96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot?= Date: Thu, 17 Aug 2017 22:19:39 +0200 Subject: C++ modernize: Pragma once (#6264) * Migrate cpp headers to pragma once --- src/filesys.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/filesys.h') diff --git a/src/filesys.h b/src/filesys.h index 94d0c874d..58846a265 100644 --- a/src/filesys.h +++ b/src/filesys.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 FILESYS_HEADER -#define FILESYS_HEADER +#pragma once #include #include @@ -118,6 +117,3 @@ bool safeWriteToFile(const std::string &path, const std::string &content); bool Rename(const std::string &from, const std::string &to); } // namespace fs - -#endif - -- cgit v1.2.3