Congma/ck tile/remove cpp 20 code (#2873)

* Remove C++20 code

C++20 features should not be used in CK. Remove all C++20 code.

* fix c++17 build

* format

* fix merge issue

---------

Co-authored-by: Thomas Ning <Thomas.Ning@amd.com>
Co-authored-by: Max Podkorytov <4273004+tenpercent@users.noreply.github.com>
This commit is contained in:
Cong Ma
2025-09-25 11:34:28 -06:00
committed by GitHub
parent b56e5d1d79
commit a5d1e25ec7
7 changed files with 49 additions and 54 deletions

View File

@@ -193,7 +193,9 @@ auto string_to_op(const std::string& op)
int main(int argc, char* argv[])
{
auto [result, arg_parser] = create_args(argc, argv);
bool result = true;
ck_tile::ArgParser arg_parser;
std::tie(result, arg_parser) = create_args(argc, argv);
if(!result)
return -1;