Update to QScintilla v2.11.1

This commit is contained in:
mgrojo
2019-03-29 20:45:30 +01:00
parent c44286bc2b
commit e392e64852
170 changed files with 10209 additions and 6528 deletions
-4
View File
@@ -9,9 +9,7 @@
#ifndef STRINGCOPY_H
#define STRINGCOPY_H
#ifdef SCI_NAMESPACE
namespace Scintilla {
#endif
// Safer version of string copy functions like strcpy, wcsncpy, etc.
// Instantiate over fixed length strings of both char and wchar_t.
@@ -29,8 +27,6 @@ void StringCopy(T (&dest)[count], const T* source) {
#define ELEMENTS(a) (sizeof(a) / sizeof(a[0]))
#ifdef SCI_NAMESPACE
}
#endif
#endif