mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 06:47:08 -05:00
33abef7416
Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`. Use `clang-format` version 15. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. Fixes: #24315
14 lines
142 B
C++
14 lines
142 B
C++
#ifdef _MSC_VER
|
|
// Only MSVC supports this pattern.
|
|
module M:part;
|
|
#else
|
|
module M;
|
|
#endif
|
|
|
|
import M:internal_part;
|
|
|
|
int p()
|
|
{
|
|
return i();
|
|
}
|