summaryrefslogtreecommitdiff
path: root/zen/string_base.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2016-03-16 21:31:24 +0100
committerDaniel Wilhelm <daniel@wili.li>2016-03-16 21:31:24 +0100
commit89621addb4a7c87d2e3f3e7462e3c690cf71de71 (patch)
tree008b5dea7624ee1eeb57ff82c45fdf1afcab3b08 /zen/string_base.h
parent7.5 (diff)
downloadFreeFileSync-89621addb4a7c87d2e3f3e7462e3c690cf71de71.tar.gz
FreeFileSync-89621addb4a7c87d2e3f3e7462e3c690cf71de71.tar.bz2
FreeFileSync-89621addb4a7c87d2e3f3e7462e3c690cf71de71.zip
7.6
Diffstat (limited to 'zen/string_base.h')
-rw-r--r--zen/string_base.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/zen/string_base.h b/zen/string_base.h
index 224797e8..96d46fc4 100644
--- a/zen/string_base.h
+++ b/zen/string_base.h
@@ -4,8 +4,8 @@
// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
// **************************************************************************
-#ifndef Z_BASE_H_INCLUDED_08321745456
-#define Z_BASE_H_INCLUDED_08321745456
+#ifndef STRING_BASE_H_083217454562342526
+#define STRING_BASE_H_083217454562342526
#include <algorithm>
#include <cassert>
@@ -249,8 +249,8 @@ public:
//std::string functions
size_t length() const;
size_t size () const { return length(); }
- const Char* c_str() const { return rawStr; }; //C-string format with 0-termination
- const Char* data() const { return rawStr; }; //internal representation, 0-termination not guaranteed
+ const Char* c_str() const { return rawStr; } //C-string format with 0-termination
+ const Char* data() const { return rawStr; } //internal representation, 0-termination not guaranteed
const Char operator[](size_t pos) const;
bool empty() const { return length() == 0; }
void clear();
@@ -686,4 +686,4 @@ Zbase<Char, SP, AP>& Zbase<Char, SP, AP>::operator+=(Char ch)
}
}
-#endif //Z_BASE_H_INCLUDED_08321745456
+#endif //STRING_BASE_H_083217454562342526
bgstack15