Skip to content

Commit

Permalink
Обновлены библиотеки core_as: Исправлено получение имен макросов в си…
Browse files Browse the repository at this point in the history
…стемах, у которых установлен не русский язык для программ, не поддерживающих Юникод.

Исправлена ошибка в строковой библиотеке.
  • Loading branch information
orefkov committed Oct 1, 2021
1 parent ce56f23 commit 0cd3f50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/include/core_as/sstring.h
Original file line number Diff line number Diff line change
Expand Up @@ -1812,7 +1812,7 @@ class empty_bases lstring :
return *this;
}
my_type& operator = (my_type&& other) {
return assign(move(other));
return assign(std::move(other));
}

my_type& operator = (const SimpleStr<K>& other) {
Expand Down
4 changes: 2 additions & 2 deletions src/include/core_as/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#define F_VERSION 1,0,1,1
#define P_VERSION "1.0.1.1"
#define F_VERSION 1,0,1,2
#define P_VERSION "1.0.1.2"
#define COPY_RIGHT "© Àëåêñàíäð Îðåôêîâ, 2021"

0 comments on commit 0cd3f50

Please sign in to comment.