diff options
author | Thomas Lively <tlively@google.com> | 2024-09-06 17:57:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-07 00:57:18 +0000 |
commit | 7e117284029bfbfc2b638caa53335e1b2c53490e (patch) | |
tree | d4d8d3ef4b7ec2f26982295546b6509fa65d30d9 /test/gtest | |
parent | 2d70ee0d1d2620a676bdf82779187cf0ee5bd0cf (diff) | |
download | binaryen-7e117284029bfbfc2b638caa53335e1b2c53490e.tar.gz binaryen-7e117284029bfbfc2b638caa53335e1b2c53490e.tar.bz2 binaryen-7e117284029bfbfc2b638caa53335e1b2c53490e.zip |
[NFC] Rename topological_orders.h to topological_sort.h (#6915)
Now that the header includes topological sort utilities in addition to
the utility that iterates over all topological orders, it makes more
sense for it to be named topological_sort.h
Diffstat (limited to 'test/gtest')
-rw-r--r-- | test/gtest/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/gtest/topological-sort.cpp (renamed from test/gtest/topological-orders.cpp) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/gtest/CMakeLists.txt b/test/gtest/CMakeLists.txt index 17e880a4e..7ef72db13 100644 --- a/test/gtest/CMakeLists.txt +++ b/test/gtest/CMakeLists.txt @@ -13,7 +13,7 @@ set(unittest_SOURCES scc.cpp stringify.cpp suffix_tree.cpp - topological-orders.cpp + topological-sort.cpp type-builder.cpp wat-lexer.cpp validator.cpp diff --git a/test/gtest/topological-orders.cpp b/test/gtest/topological-sort.cpp index 67c56cbdb..6a04a71ff 100644 --- a/test/gtest/topological-orders.cpp +++ b/test/gtest/topological-sort.cpp @@ -18,7 +18,7 @@ #include <optional> #include <vector> -#include "support/topological_orders.h" +#include "support/topological_sort.h" #include "gtest/gtest.h" using namespace wasm; |