Skip to content

Commit

Permalink
COMP: Bump KWStyle to silence boost predefined-identifier warning
Browse files Browse the repository at this point in the history
To address:

```
:
/home/matt/src/KWStyle/Utilities/boost/throw_exception.hpp:233:105: warning: predefined identifier is only valid inside function [-Wpredefined-identifier-outside-function]
template<class E> BOOST_NORETURN void throw_with_location( E && e, boost::source_location const & loc = BOOST_CURRENT_LOCATION )
                                                                                                        ^
/home/matt/src/KWStyle/Utilities/boost/assert/source_location.hpp:104:79: note: expanded from macro 'BOOST_CURRENT_LOCATION'
                                                                              ^
/home/matt/src/KWStyle/Utilities/boost/current_function.hpp:37:33: note: expanded from macro 'BOOST_CURRENT_FUNCTION'
```
  • Loading branch information
thewtex committed Apr 10, 2024
1 parent ee160a9 commit 42723d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Utilities/KWStyle/BuildKWStyle.cmake
Expand Up @@ -22,8 +22,8 @@ set(CMAKE_C_COMPILER_LAUNCHER_FLAG -DCMAKE_C_COMPILER_LAUNCHER:FILEPATH=${CMAKE_
if(NOT TARGET KWStyle)
ExternalProject_Add(
KWStyle
GIT_REPOSITORY "https://github.com/Kitware/KWStyle.git"
GIT_TAG d2cba46b3c63b5a7b6453052e85c593c48c0dffd
GIT_REPOSITORY "https://github.com/thewtex/KWStyle.git"
GIT_TAG bccbda0f5a79da30f188c79d9a9aed7867b96de3
UPDATE_COMMAND ""
DOWNLOAD_DIR ${KWStyle_SOURCE_DIR}
SOURCE_DIR ${KWStyle_SOURCE_DIR}
Expand Down

0 comments on commit 42723d0

Please sign in to comment.