diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-23 19:56:10 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-23 19:56:10 +0100 |
| commit | 700510fe095085572250830dd7c2ff8b41023031 (patch) | |
| tree | 03645e602c234da0b94a9e6884f04e712de0177d /src/fix/parser_impl.cpp | |
| parent | 7303fccbc8df09aa1ac8476126e4cc0ae1f0ef62 (diff) | |
fix: Put destructor in source for impl to be known.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/fix/parser_impl.cpp')
| -rw-r--r-- | src/fix/parser_impl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fix/parser_impl.cpp b/src/fix/parser_impl.cpp index b12166a..cc18035 100644 --- a/src/fix/parser_impl.cpp +++ b/src/fix/parser_impl.cpp @@ -78,6 +78,9 @@ namespace ocl::fix } }; + visitor::visitor() = default; + visitor::~visitor() = default; + /// \brief Alias of visit. range_buffer visitor::operator()(const std::string& in) { |
