summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <carl@vertual.co.uk>2013-07-12 13:54:32 +0100
committerCarl Hetherington <carl@vertual.co.uk>2013-07-12 13:54:32 +0100
commit583decc0990ddba330777d8d41b641d83cf1202b (patch)
treeee8f508bfe11f6c4a8994443e04ebbdae20ba2a5 /src
parent87f3008ab782543c7423f61e220b706cbb39327a (diff)
Missing header guard.
Diffstat (limited to 'src')
-rw-r--r--src/sound_frame.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sound_frame.h b/src/sound_frame.h
index 83846fc8..ad4f9604 100644
--- a/src/sound_frame.h
+++ b/src/sound_frame.h
@@ -17,6 +17,9 @@
*/
+#ifndef LIBDCP_SOUND_FRAME_H
+#define LIBDCP_SOUND_FRAME_H
+
#include <string>
#include <stdint.h>
@@ -42,3 +45,5 @@ private:
};
}
+
+#endif