diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-12 22:44:00 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-12 22:44:00 +0100 |
commit | a565971de39352ff5358907ce18dcc9138059a78 (patch) | |
tree | 61b3b6b415a195e8bd6dadee2ac4f0696675992a | |
parent | 267dceefa8e4d26469d8338f980f6ba6d5dce67b (diff) |
whitespace
-rw-r--r-- | src/css.hh | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -273,7 +273,8 @@ class CssRule { */ class CssStyleSheet { private: - class RuleList : public lout::misc::SimpleVector <CssRule*>, public lout::object::Object { + class RuleList : public lout::misc::SimpleVector <CssRule*>, + public lout::object::Object { public: RuleList () : lout::misc::SimpleVector <CssRule*> (1) {}; ~RuleList () { @@ -285,10 +286,11 @@ class CssStyleSheet { int hashValue () { return (intptr_t) this; }; }; - class RuleMap : public lout::container::typed::HashTable <lout::object::ConstString, RuleList > { + class RuleMap : public lout::container::typed::HashTable + <lout::object::ConstString, RuleList > { public: - RuleMap () : lout::container::typed::HashTable <lout::object::ConstString, RuleList > (true, true, 256) { - }; + RuleMap () : lout::container::typed::HashTable + <lout::object::ConstString, RuleList > (true, true, 256) {}; }; static const int ntags = 90; // \todo replace 90 |