From 5a5ae212c8e476dbddb9ce8f7a5e30589ba6c8e5 Mon Sep 17 00:00:00 2001 From: Albert Astals Cid Date: Thu, 21 Mar 2019 20:01:12 +0100 Subject: Add missing include guards --- utils/Win32Console.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'utils/Win32Console.h') diff --git a/utils/Win32Console.h b/utils/Win32Console.h index 46381000..4ea62501 100644 --- a/utils/Win32Console.h +++ b/utils/Win32Console.h @@ -5,12 +5,16 @@ // This file is licensed under the GPLv2 or later // // Copyright (C) 2017 Adrian Johnson +// Copyright (C) 2019 Albert Astals Cid // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git // //======================================================================== +#ifndef WIN32CONSOLE_H +#define WIN32CONSOLE_H + // UTF-8 Support for win32 console // // Converts argc/argv to UTF-8. Supports UTF-8 stdout/stderr to win32 console. @@ -61,3 +65,5 @@ public: }; #endif // _WIN32 + +#endif -- cgit v1.2.3