diff options
author | lloyd <[email protected]> | 2010-06-07 18:44:55 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-07 18:44:55 +0000 |
commit | 914d79c8dfa3b36051cac60ad9f34b08cab994ea (patch) | |
tree | 535c8444c5c84f26993d784b58ef4f3d29e8bfff /src/block | |
parent | 2429ac85c1d955e637ad014a1de5fd8e396f7ae5 (diff) |
Use "/*" instead of "/**" in starting comments at the begining of a file.
This caused Doxygen to think this was markup meant for it, which really
caused some clutter in the namespace page.
Diffstat (limited to 'src/block')
-rw-r--r-- | src/block/aes/aes.cpp | 2 | ||||
-rw-r--r-- | src/block/aes/aes.h | 2 | ||||
-rw-r--r-- | src/block/aes_intel/aes_intel.cpp | 2 | ||||
-rw-r--r-- | src/block/aes_intel/aes_intel.h | 2 | ||||
-rw-r--r-- | src/block/block_cipher.h | 2 | ||||
-rw-r--r-- | src/block/blowfish/blowfish.h | 1 | ||||
-rw-r--r-- | src/block/misty1/misty1.h | 2 |
7 files changed, 6 insertions, 7 deletions
diff --git a/src/block/aes/aes.cpp b/src/block/aes/aes.cpp index df2674f34..257dfd183 100644 --- a/src/block/aes/aes.cpp +++ b/src/block/aes/aes.cpp @@ -1,4 +1,4 @@ -/** +/* * AES * (C) 1999-2009 Jack Lloyd * diff --git a/src/block/aes/aes.h b/src/block/aes/aes.h index 45026f732..00b3163b7 100644 --- a/src/block/aes/aes.h +++ b/src/block/aes/aes.h @@ -1,4 +1,4 @@ -/** +/* * AES * (C) 1999-2009 Jack Lloyd * diff --git a/src/block/aes_intel/aes_intel.cpp b/src/block/aes_intel/aes_intel.cpp index 3d3683d7d..0da523156 100644 --- a/src/block/aes_intel/aes_intel.cpp +++ b/src/block/aes_intel/aes_intel.cpp @@ -1,4 +1,4 @@ -/** +/* * AES using Intel's AES-NI instructions * (C) 2009 Jack Lloyd * diff --git a/src/block/aes_intel/aes_intel.h b/src/block/aes_intel/aes_intel.h index 9a9463479..592fb7faa 100644 --- a/src/block/aes_intel/aes_intel.h +++ b/src/block/aes_intel/aes_intel.h @@ -1,4 +1,4 @@ -/** +/* * AES using Intel's AES-NI instructions * (C) 2009 Jack Lloyd * diff --git a/src/block/block_cipher.h b/src/block/block_cipher.h index 55bc6d90c..ff0a10103 100644 --- a/src/block/block_cipher.h +++ b/src/block/block_cipher.h @@ -1,4 +1,4 @@ -/** +/* * Block Cipher Base Class * (C) 1999-2009 Jack Lloyd * diff --git a/src/block/blowfish/blowfish.h b/src/block/blowfish/blowfish.h index 2306f0e37..f04b16484 100644 --- a/src/block/blowfish/blowfish.h +++ b/src/block/blowfish/blowfish.h @@ -1,4 +1,3 @@ -/* * Blowfish * (C) 1999-2009 Jack Lloyd * diff --git a/src/block/misty1/misty1.h b/src/block/misty1/misty1.h index 7b4d91def..d58a2aac7 100644 --- a/src/block/misty1/misty1.h +++ b/src/block/misty1/misty1.h @@ -1,4 +1,4 @@ -/** +/* * MISTY1 * (C) 1999-2008 Jack Lloyd * |