Skip to content

Commit

Permalink
Suppress clang error because of deprecation (#199)
Browse files Browse the repository at this point in the history
* Suppress clang error because of deprecation

Signed-off-by: Alejandro Hernández Cordero <[email protected]>

* feedback

Signed-off-by: Alejandro Hernández Cordero <[email protected]>

---------

Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde authored Jul 25, 2024
1 parent 111542d commit f9f667d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_filesystem_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ static constexpr const bool is_win32 = false;
#if !defined(_WIN32)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
# ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wdeprecated-declarations"
# endif
#else // !defined(_WIN32)
# pragma warning(push)
# pragma warning(disable: 4996)
Expand Down

0 comments on commit f9f667d

Please sign in to comment.