Skip to content

Commit

Permalink
Polish s7.cpp
Browse files Browse the repository at this point in the history
- Remove unused include
- Format file
  • Loading branch information
bamboo committed Nov 20, 2024
1 parent ad9a36d commit d3097e0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/s7.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#include "s7.hpp"
#include "debug_macros.hpp"
#include <godot_cpp/variant/utility_functions.hpp>
#include <mutex>
#include <vector>

class godot::s7_scheme_context {
Expand Down Expand Up @@ -71,8 +70,7 @@ s7_pointer s7::define(const char *name, s7_pointer value, const char *help) cons
return s7_define_variable_with_documentation(sc, name, value, help);
}

s7_pointer s7::define_constant_with_documentation(
const char *name, s7_pointer value, const char *help) const {
s7_pointer s7::define_constant_with_documentation(const char *name, s7_pointer value, const char *help) const {
auto sc = get();
return s7_define_constant_with_documentation(sc, name, value, help);
}

0 comments on commit d3097e0

Please sign in to comment.