Skip to content

Commit

Permalink
fix cpp orphan opt out check
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Oct 19, 2023
1 parent 80b056d commit d139fa5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 100 deletions.
2 changes: 1 addition & 1 deletion crates/re_types_builder/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ pub fn generate_cpp_code(
// Make sure to filter out that directory, or else we will end up removing those handwritten
// files.
let root_src = output_path.as_ref().join("src/rerun");
files.retain(|filepath, _| !filepath.starts_with(&root_src));
files.retain(|filepath, _| filepath.parent() != Some(root_src.as_path()));
crate::codegen::common::remove_orphaned_files(reporter, &files);

fn format_code(code: &str) -> String {
Expand Down
47 changes: 0 additions & 47 deletions rerun_cpp/src/rerun/datatypes/u_int32.cpp

This file was deleted.

52 changes: 0 additions & 52 deletions rerun_cpp/src/rerun/datatypes/u_int32.hpp

This file was deleted.

0 comments on commit d139fa5

Please sign in to comment.