Skip to content

Commit 4a66167

Browse files
committed
Change default data type
1 parent 7a3c59f commit 4a66167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CommonData/dataset.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class DataSet : public DataSetBaseNode
4444
void removeColumn( const std::string & name );
4545
void removeColumn( size_t index );
4646
void removeColumnById( size_t id );
47-
Column * insertColumn(size_t index, const std::string & name = "", columnType colType = columnType::scale, computedColumnType computedType = computedColumnType::notComputed);
47+
Column * insertColumn(size_t index, const std::string & name = "", columnType colType = columnType::unknown, computedColumnType computedType = computedColumnType::notComputed);
4848
Column * newColumn( const std::string & name);
4949
int getColumnIndex( const std::string & name ) const;
5050
int columnIndex( const Column * col ) const;

0 commit comments

Comments
 (0)