| commit | 750755e55771dca2674a6bd5a2a5a59b86f0d8f4 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Sun Mar 01 13:04:08 2020 -0800 |
| committer | David Tolnay <dtolnay@gmail.com> | Sun Mar 01 13:47:29 2020 -0800 |
| tree | 51eb712cb0db8cd02746bfbfcda15b0bacf31bf5 | |
| parent | 324437a263a6b32149abf7133e96d437865a1fec [diff] [blame] |
Rename namespace to rust::inline cxxbridge01
diff --git a/demo-cxx/demo.cc b/demo-cxx/demo.cc index 3900572..79340eb 100644 --- a/demo-cxx/demo.cc +++ b/demo-cxx/demo.cc
@@ -9,7 +9,7 @@ ThingC::~ThingC() { std::cout << "done with ThingC" << std::endl; } -std::unique_ptr<ThingC> make_demo(cxxbridge::Str appname) { +std::unique_ptr<ThingC> make_demo(::rust::Str appname) { return std::unique_ptr<ThingC>(new ThingC(appname)); }