diff options
Diffstat (limited to 'shared/zstring.h')
-rw-r--r-- | shared/zstring.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/zstring.h b/shared/zstring.h index a015dbe4..73e2f066 100644 --- a/shared/zstring.h +++ b/shared/zstring.h @@ -1,7 +1,7 @@ // ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * -// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) * +// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) * // ************************************************************************** // #ifndef ZSTRING_H_INCLUDED @@ -67,7 +67,7 @@ public: LeakChecker::instance().insert(newMem, size); //test Zbase for memory leaks return newMem; #else - return ::operator new(size); + return ::operator new(size); #endif } |