Skip to content

Commit

Permalink
Fix tests for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rHermes committed Jun 8, 2024
1 parent dc5d1f8 commit 563050b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/fast_pimpl_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ struct FastPimplTestImpl;
class FastPimplTest
{
private:
#ifdef _WIN32
hage::ForwardDeclaredStorage<details::FastPimplTestImpl, 40, 8> m_impl;

#else
hage::ForwardDeclaredStorage<details::FastPimplTestImpl, 40, 8> m_impl;
#endif
public:
FastPimplTest();
~FastPimplTest();
Expand Down

0 comments on commit 563050b

Please sign in to comment.