Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Doxygen errors #13255

Merged
merged 1 commit into from
Jan 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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