Skip to content
Snippets Groups Projects
Commit 5b2c3761 authored by Atkins, Charles Vernon's avatar Atkins, Charles Vernon
Browse files

Remove initializer_list constructors from default parameters

parent ba975dd4
No related branches found
No related tags found
1 merge request!236Fix misc mac issues
......@@ -138,9 +138,10 @@ public:
* @return reference to Variable object
*/
template <class T>
Variable<T> &DefineVariable(const std::string &name, const Dims &shape = {},
const Dims &start = {}, const Dims &count = {},
const bool constantDims = false);
Variable<T> &
DefineVariable(const std::string &name, const Dims &shape = Dims{},
const Dims &start = Dims{}, const Dims &count = Dims{},
const bool constantDims = false);
/**
* Define a Variable of primitive data type for I/O.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment