diff options
author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2014-12-05 17:14:55 +0100 |
---|---|---|
committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2014-12-05 17:14:55 +0100 |
commit | c2e5a26f355a7b51743740323c8e28156c0deee5 (patch) | |
tree | 6e9115ffb63d73ffdf883a608abc0c5a78f7dda0 /src/plugins/css/CSSParser.hpp | |
parent | 5d500ea305db7185314cc2b500257529e9e9696a (diff) |
replaced tuple handling by pair handling for nicer reading.
Diffstat (limited to 'src/plugins/css/CSSParser.hpp')
-rw-r--r-- | src/plugins/css/CSSParser.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 <vector> -#include <tuple> +#include <utility> #include <core/BufferedCharReader.hpp> #include <core/CodeTokenizer.hpp> @@ -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<SelectorNode>, Rooted<SelectorNode>> parseSelector( + std::pair<Rooted<SelectorNode>, Rooted<SelectorNode>> parseSelector( CodeTokenizer &tokenizer, ParserContext &ctx); /** |