summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2019-01-02 10:42:02 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2019-01-02 10:42:02 +0000
commiteb79ffde2f90af492994a73cf3b498ae03d6c136 (patch)
tree3d3976d6e459caff346574bf4d474312d17f202a /src
parentmodernize: add overrides (diff)
downloadinkscape-eb79ffde2f90af492994a73cf3b498ae03d6c136.tar.gz
inkscape-eb79ffde2f90af492994a73cf3b498ae03d6c136.zip
protect includes in c file
Diffstat (limited to 'src')
-rw-r--r--src/extension/internal/text_reassemble.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/extension/internal/text_reassemble.h b/src/extension/internal/text_reassemble.h
index b4e870295..817ea998e 100644
--- a/src/extension/internal/text_reassemble.h
+++ b/src/extension/internal/text_reassemble.h
@@ -29,11 +29,11 @@ extern "C" {
#endif
-#include <stdlib.h>
-#include <stdio.h>
-#include <math.h>
-#include <stdint.h>
-#include <ctype.h>
+#include <stdlib.h> //NOLINT
+#include <stdio.h> //NOLINT
+#include <math.h> //NOLINT
+#include <stdint.h> //NOLINT
+#include <ctype.h> //NOLINT
#include <fontconfig/fontconfig.h>
#include <ft2build.h>
#include <iconv.h>