Skip to content

Commit

Permalink
Fix Doxygen errors (#13255)
Browse files Browse the repository at this point in the history
  • Loading branch information
harsha-rajendran authored and pull[bot] committed Dec 6, 2023
1 parent 0f6a52a commit 0fa72ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/include/platform/NetworkCommissioning.h
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ class WiFiDriver : public Internal::WirelessDriver
* be called inside ScanNetworks.
*
* @param ssid The interested SSID, the scanning MAY be restricted to to the given SSID.
* @param callback Callback that will be invoked upon finishing the scan
*/
virtual void ScanNetworks(ByteSpan ssid, ScanCallback * callback) = 0;

Expand Down
2 changes: 2 additions & 0 deletions src/lib/support/TypeTraits.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ constexpr std::underlying_type_t<T> to_underlying(T e)
/**
* @brief This template is not designed to be used directly. A common pattern to check the presence of a member of a class is:
*
* \cond
* template <typename T>
* class IsMagic
* {
Expand All @@ -54,6 +55,7 @@ constexpr std::underlying_type_t<T> to_underlying(T e)
* public:
* static constexpr bool value = decltype(TestHasMagic<std::decay_t<T>>(0))::value;
* };
* \endcond
*
* The compiler will try to match TestHasMagicFunction(int) first, if MagicFunction is a member function of T, the match succeed
* and HasMagicFunction is an alias of std::true_type. If MagicFunction is not a member function of T, the match of
Expand Down

0 comments on commit 0fa72ae

Please sign in to comment.