summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/components/cache/memcache.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/components/cache/memcache.cpp (renamed from sca-cpp/trunk/components/cache/mcache.cpp)6
1 files changed, 3 insertions, 3 deletions
diff --git a/sca-cpp/trunk/components/cache/mcache.cpp b/sca-cpp/trunk/components/cache/memcache.cpp
index 782de605c6..304975614e 100644
--- a/sca-cpp/trunk/components/cache/mcache.cpp
+++ b/sca-cpp/trunk/components/cache/memcache.cpp
@@ -31,10 +31,10 @@
#include "list.hpp"
#include "value.hpp"
#include "monad.hpp"
-#include "mcache.hpp"
+#include "memcache.hpp"
namespace tuscany {
-namespace mcache {
+namespace memcache {
/**
* Get an item from the cache.
@@ -126,7 +126,7 @@ extern "C" {
const tuscany::value apply(const tuscany::list<tuscany::value>& params) {
const tuscany::value func(car(params));
if (func == "start")
- return tuscany::mcache::start(cdr(params));
+ return tuscany::memcache::start(cdr(params));
return tuscany::mkfailure<tuscany::value>();
}