wayland: Clean up library references

This commit is contained in:
Reg Tiangha 2024-06-11 16:12:52 -06:00
parent 99b9cec967
commit 5f1a26237b
No known key found for this signature in database
GPG key ID: 00D437798B1C2970
23 changed files with 202 additions and 251 deletions

View file

@ -54,6 +54,9 @@ typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space
using u128 = std::array<std::uint64_t, 2>;
static_assert(sizeof(u128) == 16, "u128 must be 128 bits wide");
template <class T, std::size_t A, std::size_t B>
using array2d = std::array<std::array<T, B>, A>;
// An inheritable class to disallow the copy constructor and operator= functions
class NonCopyable {
protected: