diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-02-11 00:38:52 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-02-11 00:38:52 +0000 |
commit | 6bede8f23f438dc1418475b48e6dee78518a0956 (patch) | |
tree | 8159acdabe37fda9d00c60512a90089081d573d1 | |
parent | Remove throwback to varying semaphore type (diff) | |
download | libadhocutil-6bede8f23f438dc1418475b48e6dee78518a0956.tar.bz2 libadhocutil-6bede8f23f438dc1418475b48e6dee78518a0956.tar.xz libadhocutil-6bede8f23f438dc1418475b48e6dee78518a0956.zip |
Doxygen mark helpers as privatelibadhocutil-0.8.8
-rw-r--r-- | libadhocutil/compileTimeFormatter.h | 1 | ||||
-rw-r--r-- | libadhocutil/resourcePool.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libadhocutil/compileTimeFormatter.h b/libadhocutil/compileTimeFormatter.h index 218d099..8588a35 100644 --- a/libadhocutil/compileTimeFormatter.h +++ b/libadhocutil/compileTimeFormatter.h @@ -238,6 +238,7 @@ namespace AdHoc { }; namespace support { + /// \private template<typename CharT, std::size_t N> class basic_fixed_string : public std::array<CharT, N> { public: // cppcheck-suppress noExplicitConstructor diff --git a/libadhocutil/resourcePool.h b/libadhocutil/resourcePool.h index 89d9b99..3b463b9 100644 --- a/libadhocutil/resourcePool.h +++ b/libadhocutil/resourcePool.h @@ -50,6 +50,7 @@ namespace AdHoc { std::shared_ptr<Object> resource; }; + /// \private class DLL_PUBLIC ResourcePoolBase { public: /// Create a new resource pool. |