Skip to content

Commit a86f3ce

Browse files
committed
More consistent order of parameters
1 parent 9a5aab9 commit a86f3ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/tao/json/binary.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace tao
3434
}
3535
};
3636

37-
template< typename T, typename V, char C0, char C1, char... Cs, V... Vs >
37+
template< typename T, typename V, V... Vs, char C0, char C1, char... Cs >
3838
struct unhex_helper< T, vlist< V, Vs... >, C0, C1, Cs... >
3939
: unhex_helper< T, vlist< V, Vs..., V( ( C0 << 4 ) + C1 ) >, Cs... >
4040
{

0 commit comments

Comments
 (0)