diff options
author | Jack Lloyd <[email protected]> | 2016-02-20 05:24:30 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-02-20 05:24:30 -0500 |
commit | d679355787ed98ca9028f21e24da803910aaad13 (patch) | |
tree | e6f069d6e2cf7b970a6a0c900ec193044b528c8b /src/lib/prov/tpm/uuid.h | |
parent | 1b5b1d603df11c603a3fdbcb92ad26ba459677f2 (diff) | |
parent | 3616ac0d92882641cf61ef5703ad0e827100350f (diff) |
Merge GH #428 Add missing include guards
Diffstat (limited to 'src/lib/prov/tpm/uuid.h')
-rw-r--r-- | src/lib/prov/tpm/uuid.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/prov/tpm/uuid.h b/src/lib/prov/tpm/uuid.h index 3c35da1f4..0094f4f83 100644 --- a/src/lib/prov/tpm/uuid.h +++ b/src/lib/prov/tpm/uuid.h @@ -5,6 +5,9 @@ * Botan is released under the Simplified BSD License (see license.txt) */ +#ifndef BOTAN_UUID_H__ +#define BOTAN_UUID_H__ + #include <botan/secmem.h> #include <botan/hex.h> #include <sstream> @@ -99,3 +102,5 @@ class UUID }; } + +#endif |