--- parser3/src/classes/regex.C 2016/03/31 21:46:20 1.9 +++ parser3/src/classes/regex.C 2017/02/07 22:00:29 1.11 @@ -1,7 +1,7 @@ /** @file Parser: @b int parser class. - Copyright (c) 2001-2015 Art. Lebedev Studio (http://www.artlebedev.com) + Copyright (c) 2001-2017 Art. Lebedev Studio (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ @@ -12,7 +12,7 @@ #include "pa_vint.h" #include "pa_vregex.h" -volatile const char * IDENT_REGEX_C="$Id: regex.C,v 1.9 2016/03/31 21:46:20 moko Exp $"; +volatile const char * IDENT_REGEX_C="$Id: regex.C,v 1.11 2017/02/07 22:00:29 moko Exp $"; // class @@ -46,12 +46,12 @@ static void _create(Request& r, MethodPa static void _size(Request& r, MethodParams&) { VRegex& vregex=GET_SELF(r, VRegex); - r.write_no_lang(*new VInt(vregex.get_info_size())); + r.write(*new VInt(vregex.get_info_size())); } static void _study_size(Request& r, MethodParams&) { VRegex& vregex=GET_SELF(r, VRegex); - r.write_no_lang(*new VInt(vregex.get_study_size())); + r.write(*new VInt(vregex.get_study_size())); } // constructor