File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ source distribution.
2828/* ********************************************************************
2929base64_decode
3030
31- Copyright (C) 2004-2008 René Nyffenegger
31+ Copyright (C) 2004-2008 René Nyffenegger
3232This source code is provided 'as-is', without any express or implied
3333warranty. In no event will the author be held liable for any damages
3434arising from the use of this software.
@@ -46,13 +46,12 @@ appreciated but is not required.
4646misrepresented as being the original source code.
47473. This notice may not be removed or altered from any source distribution.
4848
49- René Nyffenegger rene.nyffenegger@adp-gmbh.ch
49+ René Nyffenegger rene.nyffenegger@adp-gmbh.ch
5050*********************************************************************/
5151
5252#ifndef TMXLITE_TILE_FUNCS_HPP_
5353#define TMXLITE_TILE_FUNCS_HPP_
5454
55- #include < tmxlite/detail/pugixml.hpp>
5655#include < tmxlite/detail/Log.hpp>
5756#include < tmxlite/Types.hpp>
5857
@@ -189,4 +188,4 @@ namespace tmx
189188 }
190189}
191190
192- #endif // TMXLITE_TILE_FUNCS_HPP_
191+ #endif // TMXLITE_TILE_FUNCS_HPP_
Original file line number Diff line number Diff line change 11set (PROJECT_SRC
2+ ${PROJECT_DIR} /detail/pugixml.cpp
23 ${PROJECT_DIR} /FreeFuncs.cpp
34 ${PROJECT_DIR} /ImageLayer.cpp
45 ${PROJECT_DIR} /Map.cpp
56 ${PROJECT_DIR} /miniz.c
67 ${PROJECT_DIR} /Object.cpp
78 ${PROJECT_DIR} /ObjectGroup.cpp
89 ${PROJECT_DIR} /Property.cpp
9- ${PROJECT_DIR} /pugixml.cpp
1010 ${PROJECT_DIR} /TileLayer.cpp
1111 ${PROJECT_DIR} /Tileset.cpp)
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ source distribution.
2727
2828#include < tmxlite/ImageLayer.hpp>
2929#include < tmxlite/FreeFuncs.hpp>
30- #include < tmxlite/ detail/pugixml.hpp>
30+ #include " detail/pugixml.hpp"
3131#include < tmxlite/detail/Log.hpp>
3232
3333using namespace tmx ;
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ and must not be misrepresented as being the original software.
2525source distribution.
2626*********************************************************************/
2727
28+ #include " detail/pugixml.hpp"
2829#include < tmxlite/Map.hpp>
2930#include < tmxlite/FreeFuncs.hpp>
3031#include < tmxlite/ObjectGroup.hpp>
@@ -306,4 +307,4 @@ bool Map::reset()
306307 m_properties.clear ();
307308
308309 return false ;
309- }
310+ }
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ source distribution.
2626*********************************************************************/
2727
2828#include < tmxlite/Object.hpp>
29- #include < tmxlite/ detail/pugixml.hpp>
29+ #include " detail/pugixml.hpp"
3030#include < tmxlite/detail/Log.hpp>
3131
3232#include < sstream>
@@ -131,4 +131,4 @@ void Object::parsePoints(const pugi::xml_node& node)
131131 {
132132 Logger::log (" Points for polygon or polyline object are missing" , Logger::Type::Warning);
133133 }
134- }
134+ }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ source distribution.
2727
2828#include < tmxlite/FreeFuncs.hpp>
2929#include < tmxlite/ObjectGroup.hpp>
30- #include < tmxlite/ detail/pugixml.hpp>
30+ #include " detail/pugixml.hpp"
3131#include < tmxlite/detail/Log.hpp>
3232
3333using namespace tmx ;
@@ -84,4 +84,4 @@ void ObjectGroup::parse(const pugi::xml_node& node)
8484 m_objects.back ().parse (child);
8585 }
8686 }
87- }
87+ }
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ source distribution.
2626*********************************************************************/
2727
2828#include < tmxlite/Property.hpp>
29- #include < tmxlite/ detail/pugixml.hpp>
29+ #include " detail/pugixml.hpp"
3030#include < tmxlite/detail/Log.hpp>
3131
3232using namespace tmx ;
@@ -75,4 +75,4 @@ void Property::parse(const pugi::xml_node& node)
7575 m_type = Type::String;
7676 return ;
7777 }
78- }
78+ }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ source distribution.
2727
2828#include < tmxlite/FreeFuncs.hpp>
2929#include < tmxlite/TileLayer.hpp>
30- #include < tmxlite/ detail/pugixml.hpp>
30+ #include " detail/pugixml.hpp"
3131#include < tmxlite/detail/Log.hpp>
3232
3333#include < sstream>
@@ -189,4 +189,4 @@ void TileLayer::createTiles(const std::vector<std::uint32_t>& IDs)
189189 m_tiles.back ().flipFlags = ((id & mask) >> 28 );
190190 m_tiles.back ().ID = id & ~mask;
191191 }
192- }
192+ }
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ source distribution.
2626*********************************************************************/
2727
2828#include < tmxlite/Tileset.hpp>
29+ #include " detail/pugixml.hpp"
2930#include < tmxlite/FreeFuncs.hpp>
3031#include < tmxlite/detail/Log.hpp>
3132
@@ -301,4 +302,4 @@ void Tileset::parseTileNode(const pugi::xml_node& node)
301302 }
302303 }
303304 m_tiles.push_back (tile);
304- }
305+ }
File renamed without changes.
You can’t perform that action at this time.
0 commit comments