Skip to content

Commit

Permalink
The changes to hash_table8.hpp are incompatable with c++11. Changing …
Browse files Browse the repository at this point in the history
…to c++14 may fix this issue.
  • Loading branch information
atamagaii committed Jan 11, 2025
1 parent df03930 commit e5404ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def search_system_path(file_name: str) -> Optional[str]: # type: ignore # Missi
'-Wno-unused-parameter',
'-fno-rtti',
'-fno-exceptions',
'-std=c++11',
'-std=c++14',
'-fvisibility=hidden', '-pipe',
'-DNINJA_PYTHON="%s"' % options.with_python]
if options.debug:
Expand Down

0 comments on commit e5404ce

Please sign in to comment.