summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-12 20:32:17 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-12 20:32:17 +0100
commit8a95b38aeadeddd52badd6aa6b0466da2f4ca25e (patch)
tree44c68a88af67f7c47da8425f3ee98f35970ac2c1
parented157b5d113e35562abbe8e1a4ad89c005ce8957 (diff)
Header guards.
-rw-r--r--src/gamma_lut.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gamma_lut.h b/src/gamma_lut.h
index dcecfc2d..c844de44 100644
--- a/src/gamma_lut.h
+++ b/src/gamma_lut.h
@@ -17,6 +17,9 @@
*/
+#ifndef LIBDCP_GAMMA_LUT_H
+#define LIBDCP_GAMMA_LUT_H
+
#include "lut.h"
#include "lut_cache.h"
@@ -30,3 +33,5 @@ public:
};
}
+
+#endif