aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/Endianness.h
diff options
context:
space:
mode:
Diffstat (limited to 'LUFA/Common/Endianness.h')
-rw-r--r--LUFA/Common/Endianness.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/Common/Endianness.h b/LUFA/Common/Endianness.h
index 32ef463a0..cdc90e5b8 100644
--- a/LUFA/Common/Endianness.h
+++ b/LUFA/Common/Endianness.h
@@ -122,7 +122,7 @@
#define CPU_TO_BE32(x) (x)
#elif !defined(le16_to_cpu)
/** \name Run-time endianness conversion */
- //@{
+ /**@{*/
/** Performs a conversion between a Little Endian encoded 16-bit piece of data and the
* Endianness of the currently selected CPU architecture.
@@ -252,10 +252,10 @@
*/
#define cpu_to_be32(x) SwapEndian_32(x)
- //@}
+ /**@}*/
/** \name Compile-time endianness conversion */
- //@{
+ /**@{*/
/** Performs a conversion between a Little Endian encoded 16-bit piece of data and the
* Endianness of the currently selected CPU architecture.
@@ -385,7 +385,7 @@
*/
#define CPU_TO_BE32(x) SWAPENDIAN_32(x)
- //! @}
+ /**@}*/
#endif
/* Inline Functions: */