summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-12-05 00:52:18 +0100
committerCarl Hetherington <cth@carlh.net>2023-12-05 00:52:18 +0100
commit7fcc6b3ce368bf3bca0d9ba1d643db37c0c9cf70 (patch)
tree2eba89b517db3982d61d493bb3668ef9efdc74d3 /src
parentb26742cd66a2727f5538388e09a9703c69d6623b (diff)
Add header guard to ruby.h.split
Diffstat (limited to 'src')
-rw-r--r--src/ruby.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ruby.h b/src/ruby.h
index 343583dd..dd5dce29 100644
--- a/src/ruby.h
+++ b/src/ruby.h
@@ -32,6 +32,10 @@
*/
+#ifndef LIBDCP_RUBY_H
+#define LIBDCP_RUBY_H
+
+
#include <string>
@@ -69,3 +73,6 @@ bool operator!=(Ruby const& a, Ruby const& b);
}
+
+#endif
+