Skip to content

Commit 35c106b

Browse files
committed
Update module.private.modulemap
1 parent 7178286 commit 35c106b

File tree

24 files changed

+56
-86
lines changed

24 files changed

+56
-86
lines changed

Sources/OpenGraphCxx/Attribute/OGAttribute.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include <OpenGraph/OGAttribute.h>
66
#include <OpenGraphCxx/Attribute/AttributeID.hpp>
7-
#include <OpenGraphCxx/Util/assert.hpp>
7+
#include <OpenGraphCxx/Misc/assert.hpp>
88
#include <optional>
99

1010
const OGAttribute OGAttributeNil = OGAttribute(OG::AttributeID::Kind::Null);

Sources/OpenGraphCxx/Data/table.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <OpenGraphCxx/Data/page.hpp>
1111
#include <OpenGraphCxx/Data/page_const.hpp>
1212
#include <OpenGraphCxx/Data/zone.hpp>
13-
#include <OpenGraphCxx/Util/assert.hpp>
13+
#include <OpenGraphCxx/Misc/assert.hpp>
1414
#include <sys/mman.h>
1515
#include <dispatch/dispatch.h>
1616
#if OG_TARGET_OS_DARWIN

Sources/OpenGraphCxx/Data/zone.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <OpenGraphCxx/Data/zone.hpp>
66
#include <OpenGraphCxx/Data/table.hpp>
77
#include <OpenGraphCxx/Data/page.hpp>
8-
#include <OpenGraphCxx/Util/assert.hpp>
8+
#include <OpenGraphCxx/Misc/assert.hpp>
99
#if OG_TARGET_OS_DARWIN
1010
#include <malloc/malloc.h>
1111
#else

Sources/OpenGraphCxx/DebugServer/og-debug-server.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
#if OG_TARGET_OS_DARWIN
99

1010
#include <OpenGraph/OGGraphDescription.h>
11-
#include <OpenGraphCxx/Util/log.hpp>
12-
#include <OpenGraphCxx/Util/assert.hpp>
11+
#include <OpenGraphCxx/Misc/log.hpp>
12+
#include <OpenGraphCxx/Misc/assert.hpp>
1313
#include <OpenGraphCxx/Graph/Graph.hpp>
1414

1515
#include <iostream>

Sources/OpenGraphCxx/Graph/GraphContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include <OpenGraphCxx/Graph/Graph.hpp>
66
#include <OpenGraph/OGGraph.h>
7-
#include <OpenGraphCxx/Util/assert.hpp>
7+
#include <OpenGraphCxx/Misc/assert.hpp>
88

99
OG::Graph::Context &OG::Graph::Context::from_cf(OGGraphRef storage) OG_NOEXCEPT {
1010
if (storage->context.isInvalid()) {

Sources/OpenGraphCxx/Graph/GraphDescription.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <OpenGraph/OGGraphDescription.h>
66
#include <OpenGraph/OGGraph.h>
77
#include <OpenGraphCxx/Graph/Graph.hpp>
8-
#include <OpenGraphCxx/Util/assert.hpp>
8+
#include <OpenGraphCxx/Misc/assert.hpp>
99

1010
CFTypeRef OGGraphDescription(OGGraphRef graph, CFDictionaryRef options) {
1111
#if OG_OBJC_FOUNDATION

Sources/OpenGraphCxx/Graph/GraphDescription.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <OpenGraph/OGGraphDescription.h>
66
#include <OpenGraph/OGGraph.h>
77
#include <OpenGraphCxx/Graph/Graph.hpp>
8-
#include <OpenGraphCxx/Util/assert.hpp>
8+
#include <OpenGraphCxx/Misc/assert.hpp>
99

1010
#if OG_OBJC_FOUNDATION
1111

Sources/OpenGraphCxx/Graph/OGGraph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include <OpenGraph/OGGraph.h>
66
#include <OpenGraphCxx/Graph/Graph.hpp>
7-
#include <OpenGraphCxx/Util/assert.hpp>
7+
#include <OpenGraphCxx/Misc/assert.hpp>
88
#include <OpenGraphCxx/Data/ClosureFunction.hpp>
99
#include <pthread.h>
1010

Sources/OpenGraphCxx/Graph/OGSubgraph.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
#include <OpenGraph/OGGraph.h>
77
#include <OpenGraphCxx/Graph/Subgraph.hpp>
88
#include <OpenGraph/OGGraphContext.h>
9-
#include <OpenGraphCxx/Util/assert.hpp>
10-
#include <OpenGraphCxx/Util/env.hpp>
9+
#include <OpenGraphCxx/Misc/assert.hpp>
10+
#include <OpenGraphCxx/Misc/env.hpp>
1111
#include <pthread.h>
1212
#if !OG_TARGET_OS_WASI
1313
#include <dispatch/dispatch.h>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// assert.cpp
33
// OpenGraphCxx
44

5-
#include <OpenGraphCxx/Util/assert.hpp>
6-
#include <OpenGraphCxx/Util/log.hpp>
5+
#include <OpenGraphCxx/Misc/assert.hpp>
6+
#include <OpenGraphCxx/Misc/log.hpp>
77

88
#include <stdio.h>
99
#include <stdlib.h>

0 commit comments

Comments
 (0)