forked from hyrise/hyrise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Link profiling libraries for coverage builds (hyrise#2499)
- Loading branch information
Showing
4 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include "abstract_plugin.hpp" | ||
|
||
namespace hyrise { | ||
|
||
// We have to instantiate this function here because clang-12(+) does not instantiate it and llvm-cov throws a warning | ||
// (functions have mismatched data). See | ||
// https://stackoverflow.com/questions/57331600/llvm-cov-statistics-for-uninstantiated-functions | ||
std::vector<std::pair<PluginFunctionName, PluginFunctionPointer>> AbstractPlugin::provided_user_executable_functions() | ||
const { | ||
return {}; | ||
} | ||
|
||
} // namespace hyrise |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters