diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-05 00:52:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-05 00:52:18 +0100 |
| commit | 7fcc6b3ce368bf3bca0d9ba1d643db37c0c9cf70 (patch) | |
| tree | 2eba89b517db3982d61d493bb3668ef9efdc74d3 | |
| parent | b26742cd66a2727f5538388e09a9703c69d6623b (diff) | |
Add header guard to ruby.h.split
| -rw-r--r-- | src/ruby.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 + |
