Skip to content

Commit

Permalink
fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Aug 2, 2023
1 parent 1d4ab86 commit 950730a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions matlab/src/cpp/arrow/matlab/array/proxy/numeric_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
// specific language governing permissions and limitations
// under the License.

#pragma once

#include "arrow/array.h"
#include "arrow/array/data.h"
#include "arrow/array/util.h"
Expand All @@ -41,7 +39,7 @@
namespace arrow::matlab::array::proxy {

template<typename ArrowType>
class ARROW_MATLAB_EXPORT NumericArray : public arrow::matlab::array::proxy::Array {
class NumericArray : public arrow::matlab::array::proxy::Array {
public:

NumericArray(const std::shared_ptr<arrow::NumericArray<ArrowType>> numeric_array)
Expand Down Expand Up @@ -91,6 +89,6 @@ class ARROW_MATLAB_EXPORT NumericArray : public arrow::matlab::array::proxy::Arr

// Specialization of NumericArray::Make for arrow::TimestampType.
template <>
libmexclass::proxy::MakeResult NumericArray<arrow::TimestampType>::make(const libmexclass::proxy::FunctionArguments& constructor_arguments);
ARROW_MATLAB_EXPORT libmexclass::proxy::MakeResult NumericArray<arrow::TimestampType>::make(const libmexclass::proxy::FunctionArguments& constructor_arguments);

}

0 comments on commit 950730a

Please sign in to comment.