Commit 7c69e03b authored by Rosen Penev's avatar Rosen Penev Committed by Nikias Bassen

c++: Add closing namespace comment

[clang-tidy] Found with google-readability-namespace-comments
Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
parent 68dc3f56
...@@ -145,4 +145,4 @@ unsigned int Array::GetNodeIndex(Node* node) const ...@@ -145,4 +145,4 @@ unsigned int Array::GetNodeIndex(Node* node) const
return std::distance (_array.begin(), it); return std::distance (_array.begin(), it);
} }
}; } // namespace PList
...@@ -70,4 +70,4 @@ bool Boolean::GetValue() const ...@@ -70,4 +70,4 @@ bool Boolean::GetValue() const
return b != 0 ; return b != 0 ;
} }
}; } // namespace PList
...@@ -76,4 +76,4 @@ std::vector<char> Data::GetValue() const ...@@ -76,4 +76,4 @@ std::vector<char> Data::GetValue() const
}; } // namespace PList
...@@ -73,4 +73,4 @@ timeval Date::GetValue() const ...@@ -73,4 +73,4 @@ timeval Date::GetValue() const
return t; return t;
} }
}; } // namespace PList
...@@ -179,4 +179,4 @@ std::string Dictionary::GetNodeKey(Node* node) ...@@ -179,4 +179,4 @@ std::string Dictionary::GetNodeKey(Node* node)
return ""; return "";
} }
}; } // namespace PList
...@@ -70,4 +70,4 @@ uint64_t Integer::GetValue() const ...@@ -70,4 +70,4 @@ uint64_t Integer::GetValue() const
return i; return i;
} }
}; } // namespace PList
...@@ -77,4 +77,4 @@ std::string Key::GetValue() const ...@@ -77,4 +77,4 @@ std::string Key::GetValue() const
return ret; return ret;
} }
}; } // namespace PList
...@@ -163,4 +163,4 @@ Node* Node::FromPlist(plist_t node, Node* parent) ...@@ -163,4 +163,4 @@ Node* Node::FromPlist(plist_t node, Node* parent)
return ret; return ret;
} }
}; } // namespace PList
...@@ -70,4 +70,4 @@ double Real::GetValue() const ...@@ -70,4 +70,4 @@ double Real::GetValue() const
return d; return d;
} }
}; } // namespace PList
...@@ -77,4 +77,4 @@ std::string String::GetValue() const ...@@ -77,4 +77,4 @@ std::string String::GetValue() const
return ret; return ret;
} }
}; } // namespace PList
...@@ -119,5 +119,5 @@ Structure* Structure::FromBin(const std::vector<char>& bin) ...@@ -119,5 +119,5 @@ Structure* Structure::FromBin(const std::vector<char>& bin)
} }
}; } // namespace PList
...@@ -70,4 +70,4 @@ uint64_t Uid::GetValue() const ...@@ -70,4 +70,4 @@ uint64_t Uid::GetValue() const
return i; return i;
} }
}; } // namespace PList
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment