summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-08-05 15:00:19 +0100
committerCarl Hetherington <cth@carlh.net>2014-08-05 15:00:19 +0100
commitf0da23525fd60c4c9f054e5d603adb1b7ec05d19 (patch)
tree0e54d64d46ad20acc2dec65f9ccb0aeabdb00ee7 /src
parent2604b64564d2cbdad846dbb1120dafbdc92622c2 (diff)
Header guard.
Diffstat (limited to 'src')
-rw-r--r--src/raw_convert.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/raw_convert.h b/src/raw_convert.h
index fe847c90..90737c0c 100644
--- a/src/raw_convert.h
+++ b/src/raw_convert.h
@@ -17,6 +17,9 @@
*/
+#ifndef LIBDCP_RAW_CONVERT_H
+#define LIBDCP_RAW_CONVERT_H
+
#include <sstream>
#include <iomanip>
@@ -39,3 +42,5 @@ raw_convert (Q v, int precision = 16)
}
};
+
+#endif