Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 2 additions & 13 deletions source/src/utility/keys/KeyLookup.hh
Original file line number Diff line number Diff line change
Expand Up @@ -97,24 +97,13 @@ private: // Creation
= default;


/// @brief Copy constructor
inline
KeyLookup( KeyLookup const & a ); // Undefined


/// @brief Destructor
inline
~KeyLookup()
= default;


private: // Assignment


/// @brief Copy assignment
inline
KeyLookup &
operator =( KeyLookup const & a ); // Undefined
KeyLookup( KeyLookup const & ) = delete;
KeyLookup & operator =( KeyLookup const & ) = delete;


public: // Methods
Expand Down