From c2e5a26f355a7b51743740323c8e28156c0deee5 Mon Sep 17 00:00:00 2001 From: Benjamin Paassen Date: Fri, 5 Dec 2014 17:14:55 +0100 Subject: replaced tuple handling by pair handling for nicer reading. --- src/plugins/css/CSSParser.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/css/CSSParser.hpp') diff --git a/src/plugins/css/CSSParser.hpp b/src/plugins/css/CSSParser.hpp index 27a483d..a4d8cdc 100644 --- a/src/plugins/css/CSSParser.hpp +++ b/src/plugins/css/CSSParser.hpp @@ -20,7 +20,7 @@ #define _OUSIA_CSS_PARSER_HPP_ #include -#include +#include #include #include @@ -79,7 +79,7 @@ private: * of the SelectorTree and returns the beginning node of the path as first * element as well as the leaf of the path as second tuple element. */ - std::tuple, Rooted> parseSelector( + std::pair, Rooted> parseSelector( CodeTokenizer &tokenizer, ParserContext &ctx); /** -- cgit v1.2.3