summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-01-26 00:30:35 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-26 02:21:16 +0100
commitd0fd28941427f30c0b844c429b7c92e8031b49d5 (patch)
treec9784b74572ea0aaa9b0b6e2e8515df18fef4f01 /src/lib
parent818e4bec3fd59a4ff7619a1b449c4eda71cb84fb (diff)
Add some include guards.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/nanomsg.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/nanomsg.h b/src/lib/nanomsg.h
index 8ae6a55aa..7a813dcf1 100644
--- a/src/lib/nanomsg.h
+++ b/src/lib/nanomsg.h
@@ -19,6 +19,10 @@
*/
+#ifndef DCPOMATIC_NANOMSG_H
+#define DCPOMATIC_NANOMSG_H
+
+
#include <string>
#include <list>
#include <boost/optional.hpp>
@@ -55,3 +59,6 @@ private:
std::string _current;
};
+
+#endif
+