| Index: src/vm/ffi_disabled.cc
|
| diff --git a/src/vm/ffi_disabled.cc b/src/vm/ffi_disabled.cc
|
| index c1be90b3830064c6235a5203c98163f282faed57..670214f402e9c924a15296f5eac197152b1af23d 100644
|
| --- a/src/vm/ffi_disabled.cc
|
| +++ b/src/vm/ffi_disabled.cc
|
| @@ -2,20 +2,20 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE.md file.
|
|
|
| -#ifndef FLETCH_ENABLE_FFI
|
| +#ifndef DARTINO_ENABLE_FFI
|
|
|
| #include "src/vm/ffi.h"
|
| #include "src/vm/natives.h"
|
| #include "src/shared/assert.h"
|
|
|
| -namespace fletch {
|
| +namespace dartino {
|
|
|
| void ForeignFunctionInterface::Setup() {}
|
|
|
| void ForeignFunctionInterface::TearDown() {}
|
|
|
| void ForeignFunctionInterface::AddDefaultSharedLibrary(const char* library) {
|
| - FATAL("fletch vm was built without FFI support.");
|
| + FATAL("dartino vm was built without FFI support.");
|
| }
|
|
|
| void* ForeignFunctionInterface::LookupInDefaultLibraries(const char* symbol) {
|
| @@ -39,6 +39,6 @@ UNIMPLEMENTED_NATIVE(ForeignLibraryBundlePath)
|
|
|
| UNIMPLEMENTED_NATIVE(ForeignErrno)
|
|
|
| -} // namespace fletch
|
| +} // namespace dartino
|
|
|
| -#endif // not FLETCH_ENABLE_FFI
|
| +#endif // not DARTINO_ENABLE_FFI
|
|
|