Commit e80de835 authored by Kenton Varda's avatar Kenton Varda

Merge pull request #86 from kevinwallace/schema-absolute-import

Use absolute import path for c++.capnp
parents c449295b 4faf56bc
......@@ -71,7 +71,7 @@
# two-party protocol initially, and then pair applications with an appropriate proxy written in
# C++, rather than implement other parameterizations of the RPC protocol directly.
using Cxx = import "c++.capnp";
using Cxx = import "/capnp/c++.capnp";
$Cxx.namespace("capnp::rpc::twoparty");
enum Side {
......
This diff is collapsed.
......@@ -111,7 +111,7 @@
# bother implementing any other vat network protocol -- just use the correct container type and get
# it for free.
using Cxx = import "c++.capnp";
using Cxx = import "/capnp/c++.capnp";
$Cxx.namespace("capnp::rpc");
# ========================================================================================
......
This diff is collapsed.
......@@ -21,7 +21,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
using Cxx = import "c++.capnp";
using Cxx = import "/capnp/c++.capnp";
@0xa93fc509624c72d9;
$Cxx.namespace("capnp::schema");
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment