summaryrefslogtreecommitdiff
path: root/src/CRC16.h
diff options
context:
space:
mode:
authormilla <marc.illa@dolby.com>2021-05-26 13:59:19 +0200
committermilla <marc.illa@dolby.com>2021-06-03 14:05:45 +0200
commitfdd28f8bb3608978e75b27c5410db447396f361b (patch)
tree4fd3e9ff4fa808993214956dd5753f950a6a1e47 /src/CRC16.h
parentf9d7fbc33aa571c547d916b145712469efd9f4b8 (diff)
Put definitions inside their corresponding namespaces
Diffstat (limited to 'src/CRC16.h')
-rw-r--r--src/CRC16.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/CRC16.h b/src/CRC16.h
index 6d3beb3..150afc1 100644
--- a/src/CRC16.h
+++ b/src/CRC16.h
@@ -32,14 +32,10 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef _CRC_16_H_
#define _CRC_16_H_
-#ifdef __cplusplus
-extern "C" {
-#endif
+namespace ASDCP {
unsigned short CRC16(const void *pData, int ilength);
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
+} // namespace asdcp
#endif