egeldenhuys / black-fitch

[DEPRECATED] Black-box Unit Tests for Fitchfork practicals and assignments
GNU General Public License v3.0
8 stars 4 forks source link

Remove -std=c++11 flag from task 3 compiler args #42

Closed egeldenhuys closed 7 years ago

egeldenhuys commented 7 years ago

Fitchfork is not compiling Task 3 with -std=c++11:

Compile WARNING => Possible compile warnings and/or errors follow, try to get rid of them.
In file included from doubleList.h:116:0,
                 from dListTest.cpp:2:
doubleList.cpp: In copy constructor 'DoubleList<T>::DoubleList(const DoubleList<T>&)':
doubleList.cpp:15:71: warning: delegating constructors only available with -std=c++11 or -std=gnu++11
 DoubleList<T>::DoubleList(const DoubleList<T>& other) : DoubleList<T>(){
                                                                                                                    ^

a3.3

Changed