aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc/system_alloc
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-15 22:28:02 +0000
committerlloyd <[email protected]>2010-06-15 22:28:02 +0000
commit7dbef9e3e2efd2354bb4ca97fca0d720a8957db4 (patch)
treee6d563d6658a93ba5caffcf8975a065d98ca6c38 /src/alloc/system_alloc
parent416695f7363c4e93eaeaea23427a1fed3ad73cab (diff)
More Doxygen fixes
Diffstat (limited to 'src/alloc/system_alloc')
-rw-r--r--src/alloc/system_alloc/defalloc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/alloc/system_alloc/defalloc.h b/src/alloc/system_alloc/defalloc.h
index 0c8804223..27ee3cd8f 100644
--- a/src/alloc/system_alloc/defalloc.h
+++ b/src/alloc/system_alloc/defalloc.h
@@ -12,8 +12,8 @@
namespace Botan {
-/*
-* Malloc Allocator
+/**
+* Allocator using malloc
*/
class Malloc_Allocator : public Allocator
{
@@ -24,8 +24,8 @@ class Malloc_Allocator : public Allocator
std::string type() const { return "malloc"; }
};
-/*
-* Locking Allocator
+/**
+* Allocator using malloc plus locking
*/
class Locking_Allocator : public Pooling_Allocator
{