This commit is contained in:
Michael Davidsaver
2023-01-26 08:51:10 -08:00
parent a7ce56ac18
commit 66441a4d2f
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ When changing c++ code please do:
* Indent with 4 spaces. No hard tabs. UNIX style EoL.
* Try to maintain the style of surrounding code.
* Include meaningful code comments where reasonable.
* Add doxygen tags ``@since UNRELEASED`` or ``@until UNRELEASED`` when documenting additions/changes to public APIs.
* Add doxygen tags ``@since UNRELEASED`` when documenting additions/changes to public APIs.
but do not:
+1 -1
View File
@@ -734,7 +734,7 @@ public:
*
* @throws LookupError If the lookup can not be satisfied
* @throws NoField If this Value is empty
* @until UNRELEASED An empty Value incorrectly returned an empty Value instead of throwing NoField
* @since UNRELEASED An empty Value correctly throws NoField instead of returning an empty Value
*/
Value lookup(const std::string& name);
const Value lookup(const std::string& name) const;
+2 -3
View File
@@ -98,9 +98,8 @@ std::ostream& operator<<(std::ostream&, const ServerGUID&);
* Saves existing handler, which are restored by dtor.
*
* @since 1.1.0 "handler" action runs in thread context.
* Safe to take locks etc.
*
* @until 1.1.0 handler action really runs in signal handler context.
* Safe to take locks etc.
* Previously handler action ran in signal handler context.
*/
class PVXS_API SigInt {
public: