From 25bbca2f66dd44dfa205a8e6122a39958cf5b77e Mon Sep 17 00:00:00 2001 From: Phil Dawes Date: Thu, 20 Aug 2009 18:57:04 +0100 Subject: [PATCH] removed save_stacks global function --- vm/contexts.cpp | 5 ----- vm/contexts.hpp | 1 - 2 files changed, 6 deletions(-) diff --git a/vm/contexts.cpp b/vm/contexts.cpp index 448351baf7..3d627ab050 100644 --- a/vm/contexts.cpp +++ b/vm/contexts.cpp @@ -35,11 +35,6 @@ void factorvm::save_stacks() } } -void save_stacks() -{ - return vm->save_stacks(); -} - context *factorvm::alloc_context() { context *new_context; diff --git a/vm/contexts.hpp b/vm/contexts.hpp index 00d9646424..905d3d5b49 100644 --- a/vm/contexts.hpp +++ b/vm/contexts.hpp @@ -50,7 +50,6 @@ PRIMITIVE(set_datastack); PRIMITIVE(set_retainstack); PRIMITIVE(check_datastack); -VM_C_API void save_stacks(); VM_C_API void nest_stacks(); VM_C_API void unnest_stacks();