mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Provide C++ API. Move all classes to "nt" namespace.
The C API is now just simple wrappers around the C++ API.
This commit is contained in:
committed by
Peter Johnson
parent
56f1481c24
commit
fcbd2751ba
@@ -7,7 +7,7 @@
|
||||
|
||||
#include "SequenceNumber.h"
|
||||
|
||||
namespace ntimpl {
|
||||
namespace nt {
|
||||
|
||||
bool operator<(const SequenceNumber& lhs, const SequenceNumber& rhs) {
|
||||
if (lhs.m_value < rhs.m_value)
|
||||
@@ -27,4 +27,4 @@ bool operator>(const SequenceNumber& lhs, const SequenceNumber& rhs) {
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace ntimpl
|
||||
} // namespace nt
|
||||
|
||||
Reference in New Issue
Block a user