We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b163ff commit 0341d5cCopy full SHA for 0341d5c
features/FEATURE_BLE/ble/gap/Types.h
@@ -861,17 +861,19 @@ struct disconnection_reason_t : SafeEnum<disconnection_reason_t, uint8_t> {
861
{
862
}
863
864
+#if !defined(DOXYGEN_ONLY)
865
/**
866
* Construct a new instance of disconnection_reason_t.
867
*
868
* @param value The value of the local_disconnection_reason_t created.
869
870
* @note This should only be used for casting raw values from HCI.
871
*/
- disconnection_reason_t(uint8_t value) : SafeEnum(value)
872
+ explicit disconnection_reason_t(uint8_t value) : SafeEnum(value)
873
874
875
};
876
+#endif // !defined(DOXYGEN_ONLY)
877
878
879
* Privacy Configuration of the peripheral role.
0 commit comments