diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-02-18 17:33:56 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-02-18 17:33:56 +0000 |
| commit | d81a3176a39b92881f7c275eb4e6001f55baf3ea (patch) | |
| tree | 2a3fd8b57e7d97b2d3a0ddf433adbb41338c2866 /src | |
| parent | f876c03086feb94584fabeaf8941282d9dd88770 (diff) | |
Add header guard.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/raw_convert.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/raw_convert.h b/src/lib/raw_convert.h index b0973583a..96bd7f633 100644 --- a/src/lib/raw_convert.h +++ b/src/lib/raw_convert.h @@ -17,6 +17,9 @@ */ +#ifndef DCPOMATIC_RAW_CONVERT_H +#define DCPOMATIC_RAW_CONVERT_H + #include "safe_stringstream.h" #include <iomanip> @@ -35,3 +38,5 @@ raw_convert (Q v, int precision = 16) s >> r; return r; } + +#endif |
