Files
godot/editor
Rémi Verschelde 2b084352b9 Fix warnings on non-static data member initializers (C++11 feature)
We're not formally using C++11 yet so those trigger compilation warnings
(at least with GCC 5):

./main/input_default.h:122:30: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11
  CursorShape default_shape = CURSOR_ARROW;
                              ^

Note: We may allow those eventually (especially for non-int static const),
but most of current occurrences were inconsistent with all other classes.

See also http://www.stroustrup.com/C++11FAQ.html#member-init
2018-09-27 10:29:48 +02:00
..
2018-09-22 15:17:17 +01:00
2018-09-12 21:39:17 -04:00
2018-09-14 09:27:56 -05:00
2018-09-14 09:27:56 -05:00
2018-08-30 05:11:09 +09:00
2018-08-21 17:13:16 -03:00
2018-09-14 09:27:56 -05:00
2018-09-25 14:18:25 +03:00
2018-08-19 19:24:39 +01:00
2018-09-15 10:54:00 +02:00