Skip to content

Commit

Permalink
-Remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo-gomez-windhover committed Sep 4, 2024
1 parent 6736189 commit 5f2d57d
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/SQLiteDB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -613,11 +613,8 @@ int SQLiteDB::writeVariablesToDatabase(ElfFile& inElf)

for (auto variable : inElf.getVariables())
{
// std::string symbolInitializedDataName = symbolDataPair.first;
// std::vector<uint8_t> symbolInitializedData = symbolDataPair.second;

inElf.getInitializedSymbolData();
uint32_t typeID;

/*
* @todo I want to store these SQLite magical values into MACROS,
Expand Down Expand Up @@ -697,11 +694,7 @@ int SQLiteDB::writeElfSectionsToDatabase(ElfFile& inElf)

for (auto elf32Section : inElf.getElf32Headers())
{
// std::string symbolInitializedDataName = symbolDataPair.first;
// std::vector<uint8_t> symbolInitializedData = symbolDataPair.second;

inElf.getInitializedSymbolData();
uint32_t typeID;

/*
* @todo I want to store these SQLite magical values into MACROS,
Expand Down Expand Up @@ -790,11 +783,8 @@ int SQLiteDB::writeElfSymboltableSymbolsToDatabase(ElfFile& inElf)

for (auto elf32Symbol : inElf.getElf32SymbolTable())
{
// std::string symbolInitializedDataName = symbolDataPair.first;
// std::vector<uint8_t> symbolInitializedData = symbolDataPair.second;

inElf.getInitializedSymbolData();
uint32_t typeID;

/*
* @todo I want to store these SQLite magical values into MACROS,
Expand Down

0 comments on commit 5f2d57d

Please sign in to comment.