Skip to content

Commit

Permalink
Fix missing typeid symbol errror when using clang++
Browse files Browse the repository at this point in the history
  • Loading branch information
KKyang authored and WBobby committed Jul 12, 2024
1 parent 41ae9c8 commit 5001581
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion library/include/hipblaslt-ext.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ namespace hipblaslt_ext
class GemmInstance
{
public:
HIPBLASLT_EXPORT virtual ~GemmInstance();
HIPBLASLT_EXPORT virtual ~GemmInstance() {};
HIPBLASLT_EXPORT GemmInstance(const GemmInstance& rhs) = delete;
HIPBLASLT_EXPORT GemmInstance& operator=(const GemmInstance& rhs) = delete;
HIPBLASLT_EXPORT GemmInstance(GemmInstance&& rhs) noexcept;
Expand Down
1 change: 0 additions & 1 deletion library/src/amd_detail/hipblaslt-ext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ namespace hipblaslt_ext
{
}

GemmInstance::~GemmInstance() {}
GemmInstance::GemmInstance(GemmInstance&& rhs) noexcept = default;
GemmInstance& GemmInstance::operator=(GemmInstance&& rhs) noexcept = default;

Expand Down

0 comments on commit 5001581

Please sign in to comment.