style: switch to east const across the codebase

- const T* -> T const* in all headers and implementations
- const T& -> T const& for copy constructor/operator= deletes
- update AGENTS.md to document east const convention
This commit is contained in:
2026-05-05 22:10:00 +02:00
parent 3f098faa88
commit 9114eaabc6
10 changed files with 25 additions and 24 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ public:
vao();
~vao();
vao(const vao&) = delete;
vao& operator=(const vao&) = delete;
vao(vao const&) = delete;
vao& operator=(vao const&) = delete;
vao(vao&& other) noexcept;
vao& operator=(vao&& other) noexcept;