Skip to content
Snippets Groups Projects
Commit 476b977d authored by Steven Murray's avatar Steven Murray
Browse files

Added clear() method to rdbms::ColumnNameToIdxAndType

parent d2fec334
No related branches found
No related tags found
No related merge requests found
......@@ -50,5 +50,12 @@ bool ColumnNameToIdxAndType::empty() const {
return m_nameToIdxAndType.empty();
}
//------------------------------------------------------------------------------
// clear
//------------------------------------------------------------------------------
void ColumnNameToIdxAndType::clear() {
m_nameToIdxAndType.clear();
}
} // namespace rdbms
} // namespace cta
......@@ -82,6 +82,11 @@ public:
*/
bool empty() const;
/**
* Clears the contents of this map.
*/
void clear();
private:
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment