Skip to content

Commit

Permalink
BUG: Fix symbol exportation macro module name in itk::DCMTKImageIO
Browse files Browse the repository at this point in the history
Fix the symbol exportation macro module name in the `itk::DCMTKImageIO`
strongly typed enum class serialization method.
  • Loading branch information
jhlegarreta authored and dzenanz committed Jan 16, 2023
1 parent 138d135 commit 736410b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/IO/DCMTK/include/itkDCMTKImageIO.h
Expand Up @@ -189,8 +189,8 @@ class ITKIODCMTK_EXPORT DCMTKImageIO : public ImageIOBase
};

// Define how to print enumeration
extern ITKCommon_EXPORT std::ostream &
operator<<(std::ostream & out, DCMTKImageIO::LogLevelEnum value);
extern ITKIODCMTK_EXPORT std::ostream &
operator<<(std::ostream & out, DCMTKImageIO::LogLevelEnum value);

} // end namespace itk

Expand Down

0 comments on commit 736410b

Please sign in to comment.