summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2014-05-30 21:07:48 +0000
committerThomas Arnhold <thomas@arnhold.org>2014-06-01 16:07:41 +0000
commitf3e1f476e9cffb75d0620ab2dcfdc1ea077cd9d3 (patch)
tree35b067fb63eed963813314b1971e6489c98f362b /sal
parentee0714cb95c14b889074d4baa584eba8e285c8e3 (diff)
fdo#68849: Add header guards to all include files
Added header guards to files in directories sal/, sal/, and scripting/ Change-Id: Ieb7f224f2d27bd671618c516f47f5b7f08c1d294 Reviewed-on: https://gerrit.libreoffice.org/9582 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'sal')
-rw-r--r--sal/qa/inc/valueequal.hxx5
-rw-r--r--sal/textenc/convertisciidevangari.hxx5
2 files changed, 10 insertions, 0 deletions
diff --git a/sal/qa/inc/valueequal.hxx b/sal/qa/inc/valueequal.hxx
index 563314d9e82e..0a11a2a89428 100644
--- a/sal/qa/inc/valueequal.hxx
+++ b/sal/qa/inc/valueequal.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_SAL_QA_INC_VALUEEQUAL_HXX
+#define INCLUDED_SAL_QA_INC_VALUEEQUAL_HXX
+
#include <sal/config.h>
#include <math.h>
@@ -114,4 +117,6 @@ bool is_double_equal(double x, double y)
return is_equal<double>(x, y, PREC_double);
}
+#endif // INCLUDED_SAL_QA_INC_VALUEEQUAL_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sal/textenc/convertisciidevangari.hxx b/sal/textenc/convertisciidevangari.hxx
index b3f5f309836d..89aeeaef723e 100644
--- a/sal/textenc/convertisciidevangari.hxx
+++ b/sal/textenc/convertisciidevangari.hxx
@@ -7,6 +7,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#ifndef INCLUDED_SAL_TEXTENC_CONVERTISCIIDEVANGARI_HXX
+#define INCLUDED_SAL_TEXTENC_CONVERTISCIIDEVANGARI_HXX
+
#include <sal/types.h>
sal_Size ImplConvertIsciiDevanagariToUnicode(void const * pData,
@@ -31,4 +34,6 @@ void ImplResetUnicodeToIsciiDevanagariContext(void * pContext);
void ImplDestroyUnicodeToIsciiDevanagariContext(void * pContext);
+#endif // INCLUDED_SAL_TEXTENC_CONVERTISCIIDEVANGARI_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */