From 3b970c179f4bd635bd6d87f9619d65991ad31ca2 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 ffa17f42122..2ec36bf9876 100644 --- a/drivers/PwmOut.h +++ b/drivers/PwmOut.h @@ -219,8 +219,8 @@ class PwmOut { pwmout_t _pwm; bool _deep_sleep_locked; -}; #endif +}; } // namespace mbed