--- parser3/src/include/pa_string.h 2020/12/02 15:25:41 1.227 +++ parser3/src/include/pa_string.h 2023/11/23 01:27:12 1.230 @@ -1,14 +1,14 @@ /** @file Parser: string class decl. - Copyright (c) 2001-2017 Art. Lebedev Studio (http://www.artlebedev.com) - Author: Alexandr Petrosian (http://paf.design.ru) + Copyright (c) 2001-2023 Art. Lebedev Studio (http://www.artlebedev.com) + Authors: Konstantin Morshnev , Alexandr Petrosian */ #ifndef PA_STRING_H #define PA_STRING_H -#define IDENT_PA_STRING_H "$Id: pa_string.h,v 1.227 2020/12/02 15:25:41 moko Exp $" +#define IDENT_PA_STRING_H "$Id: pa_string.h,v 1.230 2023/11/23 01:27:12 moko Exp $" // includes #include "pa_types.h" @@ -52,7 +52,7 @@ class VRegex; // generally useful -double pa_atod(const char* str, const String* problem_source=0); +double pa_atod(const char* str, const String* problem_source); int pa_atoi(const char* str, int base=10, const String* problem_source=0); unsigned int pa_atoui(const char *str, int base=10, const String* problem_source=0); uint64_t pa_atoul(const char *str, int base=10, const String* problem_source=0);