summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-13 23:59:19 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-05 21:46:30 +0200
commit915991a1accee95cfe6341a286c6ecedf4f0012b (patch)
tree9cad4b967ccd4966b191e36a5f6c80d5d43f1d2d /src
parent58731200a835da9ec928577d36ab5232db974734 (diff)
Add header guard.
Diffstat (limited to 'src')
-rw-r--r--src/file.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/file.h b/src/file.h
index 1817dc9c..bedceada 100644
--- a/src/file.h
+++ b/src/file.h
@@ -32,6 +32,10 @@
*/
+#ifndef LIBDCP_FILE_H
+#define LIBDCP_FILE_H
+
+
#include <boost/filesystem/path.hpp>
@@ -94,3 +98,5 @@ boost::filesystem::path fix_long_path(boost::filesystem::path long_path);
}
+
+#endif