From c36afcc3b63589c6750c05ebcfb35e2f6606dd85 Mon Sep 17 00:00:00 2001 From: Russ Butler Date: Mon, 29 Oct 2018 10:47:45 -0500 Subject: [PATCH] Move #endif to fix PwmOut.h doxygen Move the #endif up so it does not include the closing bracket of PwmOut. This allows the doxygen for PwmOut, classmbed_1_1_pwm_out.html, to build. --- drivers/PwmOut.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/PwmOut.h b/drivers/PwmOut.h index ffa17f4212..2ec36bf987 100644 --- a/drivers/PwmOut.h +++ b/drivers/PwmOut.h @@ -219,8 +219,8 @@ protected: pwmout_t _pwm; bool _deep_sleep_locked; -}; #endif +}; } // namespace mbed