aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc/system_alloc/defalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc/system_alloc/defalloc.h')
-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 436549540..54583d7b1 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
{