From 9fe21fcd8883b37bdc30224822e6e42afb35b8f0 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 7 Feb 2016 16:18:13 +0300 Subject: Replace most static_cast to shorter versions from defines. --- src/utils/xml/libxml.cpp | 2 +- src/utils/xml/pugixml.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils/xml') diff --git a/src/utils/xml/libxml.cpp b/src/utils/xml/libxml.cpp index 29bd83b4b..46d184067 100644 --- a/src/utils/xml/libxml.cpp +++ b/src/utils/xml/libxml.cpp @@ -108,7 +108,7 @@ namespace XML { // Get length of file file.seekg(0, std::ios::end); - size = static_cast(file.tellg()); + size = CAST_S32(file.tellg()); if (size < 0) { logger->log("Error loading XML file %s", filename.c_str()); diff --git a/src/utils/xml/pugixml.cpp b/src/utils/xml/pugixml.cpp index 9ca717d83..0f01c7f10 100644 --- a/src/utils/xml/pugixml.cpp +++ b/src/utils/xml/pugixml.cpp @@ -84,7 +84,7 @@ namespace XML { // Get length of file file.seekg(0, std::ios::end); - size = static_cast(file.tellg()); + size = CAST_S32(file.tellg()); if (size < 0) { logger->log("Error loading XML file %s", filename.c_str()); -- cgit v1.2.3-60-g2f50