summaryrefslogtreecommitdiffhomepage
path: root/examples/equiv/equiv.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-06-27 14:46:26 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-06-27 14:47:00 +0200
commit0be66c2f14812f192e139f6d24bddc4f574c059d (patch)
treeb2f70743da944d84add7c6bd99f63562a8c0e33a /examples/equiv/equiv.cc
parent29a31b73183f97b792d0585dca9a305b083f93d8 (diff)
feat: SNU C++ Library (v1.0.0)
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'examples/equiv/equiv.cc')
-rw-r--r--examples/equiv/equiv.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/equiv/equiv.cc b/examples/equiv/equiv.cc
index 01674c6..482266a 100644
--- a/examples/equiv/equiv.cc
+++ b/examples/equiv/equiv.cc
@@ -4,16 +4,16 @@
licensed under GPL-2 license
*/
-#include <astdx/equiv.hpp>
+#include <lib/equiv.hpp>
#include <iostream>
/* finally test it */
int main(int argc, char** argv)
{
std::cout << std::boolalpha;
- std::cout << astdx::is_same<bool, int>::value << std::endl;
- std::cout << astdx::is_same<bool, bool>::value << std::endl;
- std::cout << astdx::is_same<int, int>::value << std::endl;
+ std::cout << snu::is_same<bool, int>::value << std::endl;
+ std::cout << snu::is_same<bool, bool>::value << std::endl;
+ std::cout << snu::is_same<int, int>::value << std::endl;
return 0;
}