diff options
| author | 2020-05-30 20:06:00 -0700 | |
|---|---|---|
| committer | 2020-06-03 19:59:23 +0200 | |
| commit | 7c69e03ba2fb07ccac0b088331dae02216d37cba (patch) | |
| tree | 0ee2e495c9f8b5dafcbf84a1fa3f5723101dbdcd | |
| parent | 68dc3f56426d16a856d82a9a5b5c000c915d87ac (diff) | |
| download | libplist-7c69e03ba2fb07ccac0b088331dae02216d37cba.tar.gz libplist-7c69e03ba2fb07ccac0b088331dae02216d37cba.tar.bz2 | |
c++: Add closing namespace comment
[clang-tidy] Found with google-readability-namespace-comments
Signed-off-by: Rosen Penev <rosenp@gmail.com>
| -rw-r--r-- | src/Array.cpp | 2 | ||||
| -rw-r--r-- | src/Boolean.cpp | 2 | ||||
| -rw-r--r-- | src/Data.cpp | 2 | ||||
| -rw-r--r-- | src/Date.cpp | 2 | ||||
| -rw-r--r-- | src/Dictionary.cpp | 2 | ||||
| -rw-r--r-- | src/Integer.cpp | 2 | ||||
| -rw-r--r-- | src/Key.cpp | 2 | ||||
| -rw-r--r-- | src/Node.cpp | 2 | ||||
| -rw-r--r-- | src/Real.cpp | 2 | ||||
| -rw-r--r-- | src/String.cpp | 2 | ||||
| -rw-r--r-- | src/Structure.cpp | 2 | ||||
| -rw-r--r-- | src/Uid.cpp | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/src/Array.cpp b/src/Array.cpp index d5d9d7c..4f34e58 100644 --- a/src/Array.cpp +++ b/src/Array.cpp | |||
| @@ -145,4 +145,4 @@ unsigned int Array::GetNodeIndex(Node* node) const | |||
| 145 | return std::distance (_array.begin(), it); | 145 | return std::distance (_array.begin(), it); |
| 146 | } | 146 | } |
| 147 | 147 | ||
| 148 | }; | 148 | } // namespace PList |
diff --git a/src/Boolean.cpp b/src/Boolean.cpp index 4608eaf..35f2a57 100644 --- a/src/Boolean.cpp +++ b/src/Boolean.cpp | |||
| @@ -70,4 +70,4 @@ bool Boolean::GetValue() const | |||
| 70 | return b != 0 ; | 70 | return b != 0 ; |
| 71 | } | 71 | } |
| 72 | 72 | ||
| 73 | }; | 73 | } // namespace PList |
diff --git a/src/Data.cpp b/src/Data.cpp index 2e93007..11439d3 100644 --- a/src/Data.cpp +++ b/src/Data.cpp | |||
| @@ -76,4 +76,4 @@ std::vector<char> Data::GetValue() const | |||
| 76 | 76 | ||
| 77 | 77 | ||
| 78 | 78 | ||
| 79 | }; | 79 | } // namespace PList |
diff --git a/src/Date.cpp b/src/Date.cpp index 4b5e0a1..87e8a50 100644 --- a/src/Date.cpp +++ b/src/Date.cpp | |||
| @@ -73,4 +73,4 @@ timeval Date::GetValue() const | |||
| 73 | return t; | 73 | return t; |
| 74 | } | 74 | } |
| 75 | 75 | ||
| 76 | }; | 76 | } // namespace PList |
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp index 59908c6..4fd73ef 100644 --- a/src/Dictionary.cpp +++ b/src/Dictionary.cpp | |||
| @@ -179,4 +179,4 @@ std::string Dictionary::GetNodeKey(Node* node) | |||
| 179 | return ""; | 179 | return ""; |
| 180 | } | 180 | } |
| 181 | 181 | ||
| 182 | }; | 182 | } // namespace PList |
diff --git a/src/Integer.cpp b/src/Integer.cpp index 04315d7..e357f72 100644 --- a/src/Integer.cpp +++ b/src/Integer.cpp | |||
| @@ -70,4 +70,4 @@ uint64_t Integer::GetValue() const | |||
| 70 | return i; | 70 | return i; |
| 71 | } | 71 | } |
| 72 | 72 | ||
| 73 | }; | 73 | } // namespace PList |
diff --git a/src/Key.cpp b/src/Key.cpp index ed0c0c6..2e92f20 100644 --- a/src/Key.cpp +++ b/src/Key.cpp | |||
| @@ -77,4 +77,4 @@ std::string Key::GetValue() const | |||
| 77 | return ret; | 77 | return ret; |
| 78 | } | 78 | } |
| 79 | 79 | ||
| 80 | }; | 80 | } // namespace PList |
diff --git a/src/Node.cpp b/src/Node.cpp index 3da401e..51ecd75 100644 --- a/src/Node.cpp +++ b/src/Node.cpp | |||
| @@ -163,4 +163,4 @@ Node* Node::FromPlist(plist_t node, Node* parent) | |||
| 163 | return ret; | 163 | return ret; |
| 164 | } | 164 | } |
| 165 | 165 | ||
| 166 | }; | 166 | } // namespace PList |
diff --git a/src/Real.cpp b/src/Real.cpp index ec300c9..4587701 100644 --- a/src/Real.cpp +++ b/src/Real.cpp | |||
| @@ -70,4 +70,4 @@ double Real::GetValue() const | |||
| 70 | return d; | 70 | return d; |
| 71 | } | 71 | } |
| 72 | 72 | ||
| 73 | }; | 73 | } // namespace PList |
diff --git a/src/String.cpp b/src/String.cpp index 0965349..7bc3abc 100644 --- a/src/String.cpp +++ b/src/String.cpp | |||
| @@ -77,4 +77,4 @@ std::string String::GetValue() const | |||
| 77 | return ret; | 77 | return ret; |
| 78 | } | 78 | } |
| 79 | 79 | ||
| 80 | }; | 80 | } // namespace PList |
diff --git a/src/Structure.cpp b/src/Structure.cpp index 70150c2..a06618d 100644 --- a/src/Structure.cpp +++ b/src/Structure.cpp | |||
| @@ -119,5 +119,5 @@ Structure* Structure::FromBin(const std::vector<char>& bin) | |||
| 119 | 119 | ||
| 120 | } | 120 | } |
| 121 | 121 | ||
| 122 | }; | 122 | } // namespace PList |
| 123 | 123 | ||
diff --git a/src/Uid.cpp b/src/Uid.cpp index 440dec4..6456dce 100644 --- a/src/Uid.cpp +++ b/src/Uid.cpp | |||
| @@ -70,4 +70,4 @@ uint64_t Uid::GetValue() const | |||
| 70 | return i; | 70 | return i; |
| 71 | } | 71 | } |
| 72 | 72 | ||
| 73 | }; | 73 | } // namespace PList |
