mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-15 23:20:06 +02:00
- VS2012: build/tests
- JSON: style and exceptions catch by ref fix - NumberParser: case-insensitive hex parsing - Dynamic::Var: const std::string& cast operator specialization (coaxing std::string ctor) - LocalDateTime: strftime fix (buffer too small for full tz string, use %Z instead of %z - makes no difference on windows but is more portable) - small buildwin.cmd vsvars32.bat call fix
This commit is contained in:
@@ -94,7 +94,7 @@ Template::Ptr TemplateCache::getTemplate(const Path& path)
|
||||
tpl->parse();
|
||||
_cache[templatePathname] = tpl;
|
||||
}
|
||||
catch(JSONTemplateException jte)
|
||||
catch(JSONTemplateException& jte)
|
||||
{
|
||||
if ( _logger )
|
||||
{
|
||||
@@ -128,7 +128,7 @@ Template::Ptr TemplateCache::getTemplate(const Path& path)
|
||||
tpl->parse();
|
||||
_cache[templatePathname] = tpl;
|
||||
}
|
||||
catch(JSONTemplateException jte)
|
||||
catch(JSONTemplateException& jte)
|
||||
{
|
||||
if ( _logger )
|
||||
{
|
||||
|
Reference in New Issue
Block a user