Skip to content

Commit

Permalink
Fix order of args
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Apr 18, 2023
1 parent 90b5c8c commit 7bf6f40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/assign/ValueAssign.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
namespace chip {
namespace Value {

template <class DEST, class SRC>
SRC & Assign(DEST & dest, const SRC & src)
template <class SRC, class DEST>
SRC & Assign(SRC & dest, const DEST & src)
{
return dest = src;
}
Expand Down

0 comments on commit 7bf6f40

Please sign in to comment.