Skip to content

Commit

Permalink
GCC doesn't want to let us export this and I don't think we use it ou…
Browse files Browse the repository at this point in the history
…tside of libmorpheus.so, avoids a compiler warning
  • Loading branch information
dagardner-nv committed May 8, 2024
1 parent 06e3eb2 commit 0740387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion morpheus/_lib/include/morpheus/objects/file_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ inline std::string MORPHEUS_EXPORT filetypes_to_str(const FileTypes& f)
* @param f
* @return std::ostream&
*/
static inline MORPHEUS_EXPORT std::ostream& operator<<(std::ostream& os, const FileTypes& f)
static inline std::ostream& operator<<(std::ostream& os, const FileTypes& f)
{
os << filetypes_to_str(f);
return os;
Expand Down

0 comments on commit 0740387

Please sign in to comment.