Skip to content

Commit

Permalink
More build fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
khuey committed May 26, 2024
1 parent a9af69b commit 9237959
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/PerfCounters.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class PerfCounters {
#ifdef USEBPF
bool accelerate_async_signal(const Registers& regs);
#else
bool accelerate_async_signal(const Registers&) {
inline bool accelerate_async_signal(const Registers&) {
return false;
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/fast_forward.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ bool at_x86_string_instruction(Task* t);
#if defined(__i386__) || defined(__x86_64__)
bool is_x86_string_instruction_at(Task* t, remote_code_ptr ip);
#else
bool is_x86_string_instruction_at(Task*, remote_code_ptr) {
inline bool is_x86_string_instruction_at(Task*, remote_code_ptr) {
return false;
}
#endif
Expand Down

0 comments on commit 9237959

Please sign in to comment.