[Solved] How not to ignore the spaces that precede constructor arguments?
[ad_1] What you ‘re trying to do is impossible since you don’t have any control on the C++ parser and honestly makes no sense for anyone who will use your code. Unless you write some kind of preprocessor (just don’t), best option here is just to add zeros wherever is necessary: SparseArray<double, 10> array1( 0, … Read more