Skip to content

Commit ec2fd3d

Browse files
committed
Remove unnecessary uses of TILEDB_EXPORT.
1 parent 8004151 commit ec2fd3d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

clibrary.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <stdlib.h>
44
#include <stdio.h>
55

6-
TILEDB_EXPORT int32_t _num_of_folders_in_path(
6+
int32_t _num_of_folders_in_path(
77
tiledb_ctx_t* ctx,
88
tiledb_vfs_t* vfs,
99
const char* path,
@@ -12,7 +12,7 @@ TILEDB_EXPORT int32_t _num_of_folders_in_path(
1212
return ret_val;
1313
}
1414

15-
TILEDB_EXPORT int32_t _vfs_ls(
15+
int32_t _vfs_ls(
1616
tiledb_ctx_t* ctx,
1717
tiledb_vfs_t* vfs,
1818
const char* path,
@@ -21,7 +21,7 @@ TILEDB_EXPORT int32_t _vfs_ls(
2121
return ret_val;
2222
}
2323

24-
TILEDB_EXPORT int32_t _tiledb_object_walk(
24+
int32_t _tiledb_object_walk(
2525
tiledb_ctx_t* ctx,
2626
const char* path,
2727
tiledb_walk_order_t order,
@@ -30,10 +30,10 @@ TILEDB_EXPORT int32_t _tiledb_object_walk(
3030
return ret_val;
3131
}
3232

33-
TILEDB_EXPORT int32_t _tiledb_object_ls(
33+
int32_t _tiledb_object_ls(
3434
tiledb_ctx_t* ctx,
3535
const char* path,
3636
void* data) {
3737
int32_t ret_val = tiledb_object_ls(ctx, path, objectsInPath, data);
3838
return ret_val;
39-
}
39+
}

clibrary.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,27 @@ int32_t numOfFragmentsInPath(cchar_t* path, void *data);
99
int32_t vfsLs(cchar_t* path, void *data);
1010
int32_t objectsInPath(cchar_t* path, tiledb_object_t objectType, void *data);
1111

12-
TILEDB_EXPORT int32_t _num_of_folders_in_path(
12+
int32_t _num_of_folders_in_path(
1313
tiledb_ctx_t* ctx,
1414
tiledb_vfs_t* vfs,
1515
const char* path,
1616
void* data);
1717

18-
TILEDB_EXPORT int32_t _vfs_ls(
18+
int32_t _vfs_ls(
1919
tiledb_ctx_t* ctx,
2020
tiledb_vfs_t* vfs,
2121
const char* path,
2222
void* data);
2323

24-
TILEDB_EXPORT int32_t _tiledb_object_walk(
24+
int32_t _tiledb_object_walk(
2525
tiledb_ctx_t* ctx,
2626
const char* path,
2727
tiledb_walk_order_t order,
2828
void* data);
2929

30-
TILEDB_EXPORT int32_t _tiledb_object_ls(
30+
int32_t _tiledb_object_ls(
3131
tiledb_ctx_t* ctx,
3232
const char* path,
3333
void* data);
3434

35-
#endif
35+
#endif

0 commit comments

Comments
 (0)