Skip to content
Snippets Groups Projects
Commit c5bafa57 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Remove useless declarations

parent 97ee905e
No related branches found
No related tags found
1 merge request!199Integrate checkpointing
......@@ -16,9 +16,6 @@ class IDataHandler
virtual ~IDataHandler() = default;
};
template <typename DataT>
void checkpointStore(const DataT&);
template <typename DataT>
class DataHandler : public IDataHandler
{
......@@ -32,8 +29,6 @@ class DataHandler : public IDataHandler
return m_data;
}
friend void checkpointStore<DataT>(const DataT&);
DataHandler(std::shared_ptr<DataT> data) : m_data(data) {}
~DataHandler() = default;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment