Skip to content

Commit

Permalink
Fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
Capital-Asterisk committed Sep 24, 2023
1 parent e0f88df commit 62fc9e4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
8 changes: 0 additions & 8 deletions src/osp/core/copymove_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@
*/
#pragma once

//#define OSP_AUX_MOVECOPY_CTOR(type, copy_is, move_is, move_constexpr, copy_constexpr, opt_noexcept) \
// copy_constexpr type(type const& copy) opt_noexcept = copy_is; \
// move_constexpr type(type&& move) opt_noexcept = move_is;

//#define OSP_AUX_MOVECOPY_ASGN(type, copy_is, move_is, move_constexpr, copy_constexpr, opt_noexcept) \
// copy_constexpr type& operator=(type const& copy) opt_noexcept = copy_is; \
// move_constexpr type& operator=(type&& move) opt_noexcept = move_is;

#define OSP_MOVE_COPY_CTOR_ASSIGN(type) \
Type (Type const& copy) = default; \
Type (Type&& move) = default; \
Expand Down
2 changes: 0 additions & 2 deletions src/osp/core/strong_id.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ struct StrongId
: m_value{value}
{ };

OSP_MOVE_COPY_CTOR_ASSIGN_CONSTEXPR_NOEXCEPT(StrongId);

constexpr explicit operator std::size_t() const noexcept
{
return m_value;
Expand Down

0 comments on commit 62fc9e4

Please sign in to comment.