Skip to content

Commit

Permalink
TH_GDB fallback: add missing param
Browse files Browse the repository at this point in the history
  • Loading branch information
adriweb committed Jun 10, 2024
1 parent 4764ab3 commit cfe8746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TypeHandlers/TH_GDB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -555,12 +555,12 @@ namespace tivars

namespace tivars
{
data_t TH_GDB::makeDataFromString(const std::string&, const options_t&)
data_t TH_GDB::makeDataFromString(const std::string&, const options_t&, const TIVarFile* _ctx)
{
throw std::runtime_error("GDB support is not compiled in this tivars_lib_cpp version");
}

std::string TH_GDB::makeStringFromData(const data_t&, const options_t&)
std::string TH_GDB::makeStringFromData(const data_t&, const options_t&, const TIVarFile* _ctx)
{
throw std::runtime_error("GDB support is not compiled in this tivars_lib_cpp version");
}
Expand Down

0 comments on commit cfe8746

Please sign in to comment.