aboutsummaryrefslogtreecommitdiff
path: root/c++tools/resolver.cc
diff options
context:
space:
mode:
Diffstat (limited to 'c++tools/resolver.cc')
-rw-r--r--c++tools/resolver.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/c++tools/resolver.cc b/c++tools/resolver.cc
index edd4624b121..421fdaa55fe 100644
--- a/c++tools/resolver.cc
+++ b/c++tools/resolver.cc
@@ -307,3 +307,14 @@ module_resolver::IncludeTranslateRequest (Cody::Server *s, Cody::Flags,
return 0;
}
+/* This handles a client notification to the server that a CMI has been
+ produced for a module. For this simplified server, we just accept
+ the transaction and respond with "OK". */
+
+int
+module_resolver::ModuleCompiledRequest (Cody::Server *s, Cody::Flags,
+ std::string &)
+{
+ s->OKResponse();
+ return 0;
+}