diff options
author | Jack Lloyd <[email protected]> | 2016-11-25 11:35:07 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-25 11:35:54 -0500 |
commit | 1adda900e3fcc8b874f7bc8c18665150b40a5c80 (patch) | |
tree | a9db5b14e8bd60086e8d7203c23ecf8e0e88b7b3 /src/lib/rng | |
parent | 54da2ad8474401d8d3bdd97d62cb96b3244cdaac (diff) |
Avoid having source files start with /**
This caused Doxygen to dump the copyright notices for those files into
the Botan namespace description, which is not helpful.
[ci skip]
Diffstat (limited to 'src/lib/rng')
-rw-r--r-- | src/lib/rng/rdrand_rng/rdrand_rng.cpp | 2 | ||||
-rw-r--r-- | src/lib/rng/rdrand_rng/rdrand_rng.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/rng/rdrand_rng/rdrand_rng.cpp b/src/lib/rng/rdrand_rng/rdrand_rng.cpp index 1ee857c6c..d807bd81d 100644 --- a/src/lib/rng/rdrand_rng/rdrand_rng.cpp +++ b/src/lib/rng/rdrand_rng/rdrand_rng.cpp @@ -1,4 +1,4 @@ -/** +/* * RDRAND RNG * (C) 2016 Jack Lloyd * diff --git a/src/lib/rng/rdrand_rng/rdrand_rng.h b/src/lib/rng/rdrand_rng/rdrand_rng.h index 94363b89c..73616637e 100644 --- a/src/lib/rng/rdrand_rng/rdrand_rng.h +++ b/src/lib/rng/rdrand_rng/rdrand_rng.h @@ -1,4 +1,4 @@ -/** +/* * RDRAND RNG * (C) 2016 Jack Lloyd * |