File tree 3 files changed +6
-9
lines changed
3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -791,7 +791,7 @@ class FragmentMetadata {
791
791
URI validity_uri (const std::string& name) const ;
792
792
793
793
/* * Return the array schema name. */
794
- const std::string& array_schema_name () const {
794
+ inline const std::string& array_schema_name () const {
795
795
return array_schema_name_;
796
796
}
797
797
@@ -1122,7 +1122,7 @@ class FragmentMetadata {
1122
1122
*
1123
1123
* @return
1124
1124
*/
1125
- const shared_ptr<const ArraySchema>& array_schema () const {
1125
+ inline const shared_ptr<const ArraySchema>& array_schema () const {
1126
1126
return array_schema_;
1127
1127
}
1128
1128
Original file line number Diff line number Diff line change 38
38
#include " tiledb/sm/misc/tdb_time.h"
39
39
#include " tiledb/sm/query/query_buffer.h"
40
40
#include " tiledb/sm/storage_manager/context_resources.h"
41
- #include " tiledb/sm/storage_manager/storage_manager.h"
42
41
43
42
namespace tiledb {
44
43
namespace sm {
@@ -64,10 +63,6 @@ StrategyBase::StrategyBase(
64
63
, offsets_bitsize_(constants::cell_var_offset_size * 8 ) {
65
64
}
66
65
67
- ContextResources& StrategyBase::resources () const {
68
- return storage_manager_->resources ();
69
- }
70
-
71
66
void StrategyBase::set_stats (const stats::StatsData& data) {
72
67
stats_->populate_with_data (data);
73
68
}
Original file line number Diff line number Diff line change 39
39
#include " tiledb/sm/array_schema/dimension.h"
40
40
#include " tiledb/sm/misc/types.h"
41
41
#include " tiledb/sm/storage_manager/context_resources.h"
42
- #include " tiledb/sm/storage_manager/storage_manager_declaration .h"
42
+ #include " tiledb/sm/storage_manager/storage_manager .h"
43
43
44
44
namespace tiledb {
45
45
namespace sm {
@@ -208,7 +208,9 @@ class StrategyBase {
208
208
/* ********************************* */
209
209
210
210
/* * Returns the context resources of the writer. */
211
- ContextResources& resources () const ;
211
+ inline ContextResources& resources () const {
212
+ return storage_manager_->resources ();
213
+ }
212
214
213
215
/* * Returns `stats_`. */
214
216
inline stats::Stats* stats () const {
You can’t perform that action at this time.
0 commit comments