diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-26 00:30:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-26 02:21:16 +0100 |
| commit | d0fd28941427f30c0b844c429b7c92e8031b49d5 (patch) | |
| tree | c9784b74572ea0aaa9b0b6e2e8515df18fef4f01 /src/lib | |
| parent | 818e4bec3fd59a4ff7619a1b449c4eda71cb84fb (diff) | |
Add some include guards.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/nanomsg.h | 7 |
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 + |
