diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-04 19:12:08 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-04 19:12:08 +0100 |
commit | 688bc74ce0ab320cdfc6e73f6db75612968f74c4 (patch) | |
tree | 1c5d11bc2088cd19c5012fa2fc90c62ab1fdde2b /asl/meta.hpp | |
parent | 46944ec98688e962e94dcfcf426215f252bf2a87 (diff) |
Fix a bunch of warnings
Diffstat (limited to 'asl/meta.hpp')
-rw-r--r-- | asl/meta.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/asl/meta.hpp b/asl/meta.hpp index 959201e..43bd7cc 100644 --- a/asl/meta.hpp +++ b/asl/meta.hpp @@ -10,10 +10,10 @@ struct source_location int line;
explicit source_location(
- const char* file = __builtin_FILE(),
- int line = __builtin_LINE())
- : file{file}
- , line{line}
+ const char* file_ = __builtin_FILE(),
+ int line_ = __builtin_LINE())
+ : file{file_}
+ , line{line_}
{}
};
|