diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2019-05-30 18:22:13 +0200 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-06-04 14:14:37 +0100 |
commit | 8c229a1aa287dc540a573604d47a29234aa207a5 (patch) | |
tree | cdf166690ebb54d7e34d68702b5b99d04c821afc | |
parent | af97960c8d3761b9fd86dff9ef4eee3999448194 (diff) | |
download | klee-8c229a1aa287dc540a573604d47a29234aa207a5.tar.gz |
DiscretePdf.h: add include guards
-rw-r--r-- | include/klee/Internal/ADT/DiscretePDF.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/klee/Internal/ADT/DiscretePDF.h b/include/klee/Internal/ADT/DiscretePDF.h index bda851fa..74a1ce9e 100644 --- a/include/klee/Internal/ADT/DiscretePDF.h +++ b/include/klee/Internal/ADT/DiscretePDF.h @@ -7,6 +7,9 @@ // //===----------------------------------------------------------------------===// +#ifndef KLEE_DISCRETEPDF_H +#define KLEE_DISCRETEPDF_H + namespace klee { template <class T> class DiscretePDF { @@ -45,3 +48,5 @@ namespace klee { } #include "DiscretePDF.inc" + +#endif /* KLEE_DISCRETEPDF_H */ |