Skip to content

Commit

Permalink
Fix typo in template argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Apr 18, 2023
1 parent 856963e commit 3d6a8b3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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 SRC, class DEST>
SRC & Assign(SRC & dest, const DEST & src)
template <class DEST, class SRC>
SRC & Assign(DEST & dest, const SRC & src)
{
return dest = src;
}
Expand Down
2 changes: 1 addition & 1 deletion third_party/mbedtls/repo
Submodule repo updated from b76bcf to 83faec
2 changes: 1 addition & 1 deletion third_party/openthread/repo
Submodule repo updated 124 files

0 comments on commit 3d6a8b3

Please sign in to comment.