File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ namespace tao
5858 return byte ( static_cast < unsigned char >( b ) >> shift );
5959 }
6060
61- byte& operator |=( byte& l, byte r ) noexcept
61+ inline byte& operator |=( byte& l, byte r ) noexcept
6262 {
6363 return l = byte ( static_cast < unsigned char >( l ) | static_cast < unsigned char >( r ) );
6464 }
@@ -68,7 +68,7 @@ namespace tao
6868 return byte ( static_cast < unsigned char >( l ) | static_cast < unsigned char >( r ) );
6969 }
7070
71- byte& operator &=( byte& l, byte r ) noexcept
71+ inline byte& operator &=( byte& l, byte r ) noexcept
7272 {
7373 return l = byte ( static_cast < unsigned char >( l ) & static_cast < unsigned char >( r ) );
7474 }
@@ -78,7 +78,7 @@ namespace tao
7878 return byte ( static_cast < unsigned char >( l ) & static_cast < unsigned char >( r ) );
7979 }
8080
81- byte& operator ^=( byte& l, byte r ) noexcept
81+ inline byte& operator ^=( byte& l, byte r ) noexcept
8282 {
8383 return l = byte ( static_cast < unsigned char >( l ) ^ static_cast < unsigned char >( r ) );
8484 }
You can’t perform that action at this time.
0 commit comments