diff options
author | Chris Xiong <chirs241097@gmail.com> | 2022-09-11 10:35:38 -0400 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2022-09-11 10:35:38 -0400 |
commit | 426133915bc1cce66a9421409ffe47e50d1bd0c6 (patch) | |
tree | d265b65898c4fe3afb9e2f2d5e555d93de9c6280 | |
parent | 609c17de008b7a6b817c7c12e214e7ef281d1178 (diff) | |
download | deduper-426133915bc1cce66a9421409ffe47e50d1bd0c6.tar.xz |
Add missing copyright info and include guard.
-rw-r--r-- | base64.hpp | 2 | ||||
-rw-r--r-- | subslice_signature.hpp | 4 | ||||
-rw-r--r-- | thread_pool.hpp | 2 |
3 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,5 @@ +//Chris Xiong 2022 +//License: MPL-2.0 #include <cstdint> #include <string> diff --git a/subslice_signature.hpp b/subslice_signature.hpp index bf3822f..928d396 100644 --- a/subslice_signature.hpp +++ b/subslice_signature.hpp @@ -1,5 +1,7 @@ //Chris Xiong 2022 //License: MPL-2.0 +#ifndef SUBSLICE_SIGNATURE_HPP +#define SUBSLICE_SIGNATURE_HPP #include "signature.hpp" #include <vector> @@ -30,3 +32,5 @@ public: const signature_config &fcfg, const signature_config &scfg); }; + +#endif diff --git a/thread_pool.hpp b/thread_pool.hpp index c28b5e8..6aea4ec 100644 --- a/thread_pool.hpp +++ b/thread_pool.hpp @@ -1,3 +1,5 @@ +//Chris Xiong 2022 +//License: MPL-2.0 #ifndef THREAD_POOL_H #define THREAD_POOL_H |