Change #import to #include

This commit is contained in:
Thomas Goyne 2015-12-03 09:03:31 -08:00
parent f780342851
commit 853658b3fc
2 changed files with 4 additions and 3 deletions

View File

@ -17,7 +17,8 @@
////////////////////////////////////////////////////////////////////////////
#include "list.hpp"
#import <stdexcept>
#include <stdexcept>
using namespace realm;

View File

@ -19,8 +19,8 @@
#ifndef REALM_LIST_HPP
#define REALM_LIST_HPP
#import "shared_realm.hpp"
#import <realm/link_view.hpp>
#include "shared_realm.hpp"
#include <realm/link_view.hpp>
namespace realm {
class List {