From 127636f231bb3d8078a6a89314f2c9c25f5bd9e5 Mon Sep 17 00:00:00 2001 From: Hunter Date: Mon, 26 Feb 2024 00:07:15 -0800 Subject: [PATCH] removed unnecessary #ifndef in sndfile_extension_table.h --- .../target_sndfile/roc_sndio/sndfile_extension_table.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/internal_modules/roc_sndio/target_sndfile/roc_sndio/sndfile_extension_table.h b/src/internal_modules/roc_sndio/target_sndfile/roc_sndio/sndfile_extension_table.h index 96baa7d55..7051ebeb2 100644 --- a/src/internal_modules/roc_sndio/target_sndfile/roc_sndio/sndfile_extension_table.h +++ b/src/internal_modules/roc_sndio/target_sndfile/roc_sndio/sndfile_extension_table.h @@ -11,8 +11,7 @@ #ifndef ROC_SNDIO_SNDFILE_EXTENSION_TABLE_H_ #define ROC_SNDIO_SNDFILE_EXTENSION_TABLE_H_ -#ifndef ROC_SNDIO_SNDFILE_FILEMAP_H_ -#define ROC_SNDIO_SNDFILE_FILEMAP_H_ + #pragma once #include "sndfile.h" @@ -30,5 +29,5 @@ static FileMap file_type_map[5] = { { SF_FORMAT_MAT4, "mat4", NULL }, { SF_FORMAT_WAV, "wav", "wav" }, { SF_FORMAT_NIST, "nist", NULL }, { SF_FORMAT_WAVEX, "wavex", NULL } }; -#endif // ROC_SNDIO_SNDFILE_FILEMAP_H_ + #endif // ROC_SNDIO_SNDFILE_EXTENSION_TABLE_H_