Skip to content

Commit 6ddd69c

Browse files
committed
odb: fix 3dblox parsers destructors
Signed-off-by: osamahammad21 <[email protected]>
1 parent c585315 commit 6ddd69c

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

src/odb/src/3dblox/dbvParser.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ DbvParser::DbvParser(utl::Logger* logger) : BaseParser(logger)
1616
{
1717
}
1818

19-
DbvParser::~DbvParser() = default;
20-
2119
DbvData DbvParser::parseFile(const std::string& filename)
2220
{
2321
std::ifstream file(filename);

src/odb/src/3dblox/dbvParser.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class DbvParser : public BaseParser
1818
{
1919
public:
2020
DbvParser(utl::Logger* logger);
21-
~DbvParser();
2221

2322
DbvData parseFile(const std::string& filename);
2423

src/odb/src/3dblox/dbxParser.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ DbxParser::DbxParser(utl::Logger* logger) : BaseParser(logger)
1515
{
1616
}
1717

18-
DbxParser::~DbxParser() = default;
19-
2018
DbxData DbxParser::parseFile(const std::string& filename)
2119
{
2220
std::ifstream file(filename);

src/odb/src/3dblox/dbxParser.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class DbxParser : public BaseParser
1616
{
1717
public:
1818
DbxParser(utl::Logger* logger);
19-
~DbxParser();
2019

2120
DbxData parseFile(const std::string& filename);
2221

0 commit comments

Comments
 (0)