Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 20, 2023
1 parent caa9647 commit db3ffeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yaodaq/Key.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ std::int_least8_t Key::getDomain() const { return ( m_Key >> 24 ) & 0xFF; }

std::int_least8_t Key::getClass() const { return ( m_Key >> 16 ) & 0xFF; }

std::int_least16_t Key::getFamily() const { return (m_Key)&0xFFFF; }
std::int_least16_t Key::getFamily() const { return ( m_Key ) & 0xFFFF; }

std::int_least32_t Key::getKey() const { return m_Key; }

Expand Down

0 comments on commit db3ffeb

Please sign in to comment.