Update version numbers for the 2021-01-30 release.
[pub/lufa.git] / LUFA / Common / Endianness.h
index 91d05f6..5f5d0a2 100644 (file)
@@ -1,13 +1,13 @@
 /*
              LUFA Library
-     Copyright (C) Dean Camera, 2018.
+     Copyright (C) Dean Camera, 2021.
 
   dean [at] fourwalledcubicle [dot] com
            www.lufa-lib.org
 */
 
 /*
-  Copyright 2018  Dean Camera (dean [at] fourwalledcubicle [dot] com)
+  Copyright 2021  Dean Camera (dean [at] fourwalledcubicle [dot] com)
 
   Permission to use, copy, modify, distribute, and sell this
   software and its documentation for any purpose is hereby granted
                                #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.
                                 */
                                #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.
                                 */
                                #define CPU_TO_BE32(x)           SWAPENDIAN_32(x)
 
-                               //! @}
+                               /**@}*/
                        #endif
 
                /* Inline Functions: */