Skip to content

Commit

Permalink
newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
fredyshox committed Nov 20, 2023
1 parent 280d5ce commit b671e42
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ env.RednoseCompileFilter(
target="feature_handler_5",
filter_gen_script="feature_handler.py",
output_dir=gen_dir,
)
)
2 changes: 1 addition & 1 deletion rednose/helpers/ekf.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ extern "C" void* ekf_get() { \
extern void __attribute__((weak)) ekf_register(const EKF* ptr); \
static void __attribute__((constructor)) do_ekf_init_ ## ekf(void) { \
if (ekf_register) ekf_register(&ekf); \
}
}
2 changes: 1 addition & 1 deletion rednose/helpers/ekf_load.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ void ekf_load_and_register(const std::string& ekf_directory, const std::string&
assert(ekf_get != NULL);
const EKF* ekf = (const EKF*)ekf_get();
ekf_register(ekf);
}
}
2 changes: 1 addition & 1 deletion site_scons/site_tools/rednose_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ def generate(env):


def exists(env):
return True
return True

0 comments on commit b671e42

Please sign in to comment.