11 lines
253 B
C++
11 lines
253 B
C++
|
#pragma once
|
||
|
|
||
|
#include "utils/total_ordering.hpp"
|
||
|
|
||
|
class Void : public TotalOrdering<Void>
|
||
|
{
|
||
|
friend bool operator<(const Void &lhs, const Void &rhs) { return false; }
|
||
|
|
||
|
friend bool operator==(const Void &lhs, const Void &rhs) { return true; }
|
||
|
};
|