diff options
author | Max Kellermann <max@duempel.org> | 2016-04-12 22:49:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-04-12 22:53:06 +0200 |
commit | 9b854468087a620e8fd442a5e764858f5454f48e (patch) | |
tree | 96459ef22f999f5ff8593f5e018a3205b012f89b /src/util/AllocatedString.cxx | |
parent | fd5d42836f65f7fdd0fe4ec0fa42b2452fdfc930 (diff) |
util/StringPointer: rename typedef pointer to pointer_type
Diffstat (limited to 'src/util/AllocatedString.cxx')
-rw-r--r-- | src/util/AllocatedString.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/AllocatedString.cxx b/src/util/AllocatedString.cxx index 486462fa4..635e1f001 100644 --- a/src/util/AllocatedString.cxx +++ b/src/util/AllocatedString.cxx @@ -32,7 +32,7 @@ template<> AllocatedString<char> -AllocatedString<char>::Duplicate(const_pointer src) +AllocatedString<char>::Duplicate(const_pointer_type src) { return Duplicate(src, StringLength(src)); } |