mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -20,18 +20,12 @@ enum class FinalProcessorPriority : uint8_t
|
||||
class FinalProcessorIntermediateMwmInterface
|
||||
{
|
||||
public:
|
||||
explicit FinalProcessorIntermediateMwmInterface(FinalProcessorPriority priority)
|
||||
: m_priority(priority)
|
||||
{
|
||||
}
|
||||
explicit FinalProcessorIntermediateMwmInterface(FinalProcessorPriority priority) : m_priority(priority) {}
|
||||
virtual ~FinalProcessorIntermediateMwmInterface() = default;
|
||||
|
||||
virtual void Process() = 0;
|
||||
|
||||
bool operator<(FinalProcessorIntermediateMwmInterface const & other) const
|
||||
{
|
||||
return m_priority < other.m_priority;
|
||||
}
|
||||
bool operator<(FinalProcessorIntermediateMwmInterface const & other) const { return m_priority < other.m_priority; }
|
||||
|
||||
protected:
|
||||
FinalProcessorPriority m_priority;
|
||||
|
||||
Reference in New Issue
Block a user