summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2023-02-21 18:45:00 -0500
committerHubert Figuière <hub@figuiere.net>2023-02-21 18:45:05 -0500
commit03f8270d6bb255ca6618505e83169ab9d95ccef1 (patch)
treec433b190b0b6743092b09fb84562e6ba8fe2a009 /lib
parent1ec208ba623e6e2ccbdd0fee63ebfd183259cd43 (diff)
Issue #12 - Include stdint.h where needed
- This fixes an issue building with gcc 13 https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/12
Diffstat (limited to 'lib')
-rw-r--r--lib/trace.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/trace.hpp b/lib/trace.hpp
index d56c286..9dae118 100644
--- a/lib/trace.hpp
+++ b/lib/trace.hpp
@@ -1,7 +1,7 @@
/*
* libopenraw - trace.hpp
*
- * Copyright (C) 2006-2020 Hubert Figuière
+ * Copyright (C) 2006-2023 Hubert Figuière
*
* This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
@@ -20,6 +20,8 @@
#pragma once
+#include <stdint.h>
+
#include <string>
#include <vector>
#include <algorithm>