Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace tl::optional with std::optional #161

Merged
merged 3 commits into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions misc/style/run-clang-tidy.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def check_search_code_with_clang_tidy():
src_files = utils.get_src_files(search_dir, (".h", ".cc"))
compile_commands = [{
"directory": os.path.join(build_dir, "search"),
"command": "g++ -I{}/ext -std=c++11 -c {}".format(search_dir, src_file),
"command": "g++ -std=c++20 -c {}".format(src_file),
"file": src_file}
for src_file in src_files
]
Expand Down Expand Up @@ -82,8 +82,6 @@ def check_search_code_with_clang_tidy():
"-quiet",
"-p", build_dir,
"-clang-tidy-binary=clang-tidy-12",
# Include all non-system headers (.*) except the ones from search/ext/.
"-header-filter=.*,-tree.hh,-tree_util.hh",
"-checks=-*," + ",".join(checks)]
print("Running clang-tidy: " + " ".join(pipes.quote(x) for x in cmd))
print()
Expand Down
4 changes: 0 additions & 4 deletions src/search/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ fast_downward_set_linker_flags()
include("${CMAKE_CURRENT_SOURCE_DIR}/DownwardFiles.cmake")
add_executable(downward ${PLANNER_SOURCES})

## == Includes ==

include_directories(${CMAKE_CURRENT_SOURCE_DIR}/ext)

## == Libraries ==

# On Linux, find the rt library for clock_gettime().
Expand Down
Loading