From a2fcb758763a68c765f8ec6896abca303f32e1d5 Mon Sep 17 00:00:00 2001 From: Laurent Gomila Date: Sun, 4 Dec 2011 20:37:08 +0100 Subject: [PATCH] Fixed compile errors in sf::Vertex with LLVM GCC 4.2 on OS X Lion --- include/SFML/Graphics/Vertex.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SFML/Graphics/Vertex.hpp b/include/SFML/Graphics/Vertex.hpp index 21ff96eaf..f8a091196 100644 --- a/include/SFML/Graphics/Vertex.hpp +++ b/include/SFML/Graphics/Vertex.hpp @@ -67,7 +67,7 @@ public : /// \param color Vertex color /// //////////////////////////////////////////////////////////// - Vertex(const Vector2f& position, const Color& color); + Vertex(const Vector2f& position, const sf::Color& color); //////////////////////////////////////////////////////////// /// \brief Construct the vertex from its position and texture coordinates @@ -88,7 +88,7 @@ public : /// \param texCoords Vertex texture coordinates /// //////////////////////////////////////////////////////////// - Vertex(const Vector2f& position, const Color& color, const Vector2i& texCoords); + Vertex(const Vector2f& position, const sf::Color& color, const Vector2i& texCoords); //////////////////////////////////////////////////////////// // Member data