mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 04:18:58 +00:00
clang fmt github action (#13724)
This commit is contained in:
@@ -292,7 +292,7 @@ auto CryptoAlgorithmAES_CTR::CounterBlockHelper::CounterBlockBits::operator~() c
|
||||
return { ~m_hi, ~m_lo };
|
||||
}
|
||||
|
||||
auto CryptoAlgorithmAES_CTR::CounterBlockHelper::CounterBlockBits::operator <<=(unsigned shift) -> CounterBlockBits&
|
||||
auto CryptoAlgorithmAES_CTR::CounterBlockHelper::CounterBlockBits::operator<<=(unsigned shift) -> CounterBlockBits&
|
||||
{
|
||||
if (shift < 64) {
|
||||
m_hi = (m_hi << shift) | m_lo >> (64 - shift);
|
||||
@@ -308,7 +308,7 @@ auto CryptoAlgorithmAES_CTR::CounterBlockHelper::CounterBlockBits::operator <<=(
|
||||
return *this;
|
||||
}
|
||||
|
||||
auto CryptoAlgorithmAES_CTR::CounterBlockHelper::CounterBlockBits::operator &=(const CounterBlockBits& rhs) -> CounterBlockBits&
|
||||
auto CryptoAlgorithmAES_CTR::CounterBlockHelper::CounterBlockBits::operator&=(const CounterBlockBits& rhs) -> CounterBlockBits&
|
||||
{
|
||||
m_hi &= rhs.m_hi;
|
||||
m_lo &= rhs.m_lo;
|
||||
|
||||
Reference in New Issue
Block a user