summaryrefslogtreecommitdiff
path: root/utils/Win32Console.h
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2019-03-21 20:01:12 +0100
committerAlbert Astals Cid <aacid@kde.org>2019-03-21 20:01:12 +0100
commit5a5ae212c8e476dbddb9ce8f7a5e30589ba6c8e5 (patch)
tree498da3fc3cb29aab172d5b893efc949a48e233ea /utils/Win32Console.h
parente68916fca85e497d73327625d72fcf8879ed67b2 (diff)
Add missing include guards
Diffstat (limited to 'utils/Win32Console.h')
-rw-r--r--utils/Win32Console.h6
1 files changed, 6 insertions, 0 deletions
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 <ajohnson@redneon.com>
+// Copyright (C) 2019 Albert Astals Cid <aacid@kde.org>
//
// 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