summaryrefslogtreecommitdiff
path: root/solenv/gcc-wrappers
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2014-05-30 21:34:21 +0000
committerThomas Arnhold <thomas@arnhold.org>2014-06-01 16:08:25 +0000
commit8f0160a10dd2a5746c531040ffbf638e356f6d5d (patch)
tree434f81329f349b1819afcfc28f758610673392e4 /solenv/gcc-wrappers
parentf3e1f476e9cffb75d0620ab2dcfdc1ea077cd9d3 (diff)
fdo#68849: Add header guards to all include files
Added header guards to files in directories sc/, sd/, slideshow/, and solenv/ Change-Id: Ib4577761644fe72f5ddb3c5060e629bf94d6e6e2 Reviewed-on: https://gerrit.libreoffice.org/9583 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'solenv/gcc-wrappers')
-rw-r--r--solenv/gcc-wrappers/wrapper.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/solenv/gcc-wrappers/wrapper.hxx b/solenv/gcc-wrappers/wrapper.hxx
index 985074196c75..b9a0bb3fe60e 100644
--- a/solenv/gcc-wrappers/wrapper.hxx
+++ b/solenv/gcc-wrappers/wrapper.hxx
@@ -7,6 +7,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#ifndef INCLUDED_SOLENV_GCC-WRAPPERS_WRAPPER_HXX
+#define INCLUDED_SOLENV_GCC-WRAPPERS_WRAPPER_HXX
+
#include <string>
#include <iostream>
#include <vector>
@@ -21,4 +24,6 @@ string processccargs(vector<string> rawargs);
int startprocess(string command, string args);
+#endif // INCLUDED_SOLENV_GCC-WRAPPERS_WRAPPER_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */