diff options
Diffstat (limited to 'src/support')
-rw-r--r-- | src/support/topological_sort.h (renamed from src/support/topological_orders.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/support/topological_orders.h b/src/support/topological_sort.h index bc6609ae0..b75f6b78d 100644 --- a/src/support/topological_orders.h +++ b/src/support/topological_sort.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef wasm_support_topological_orders_h -#define wasm_support_topological_orders_h +#ifndef wasm_support_topological_sort_h +#define wasm_support_topological_sort_h #include <algorithm> #include <cassert> @@ -300,4 +300,4 @@ template<typename Cmp> std::vector<Index> minSort(const Graph& graph, Cmp cmp) { } // namespace wasm -#endif // wasm_support_topological_orders_h +#endif // wasm_support_topological_sort_h |