C++11 Migration

From Synfig Studio :: Documentation
Jump to: navigation, search
m (Useful information about C++11 Migration: fix list)
m (C++11 compliance or Migration)
Line 4: Line 4:
  
 
Have a look to [https://github.com/d-j-a-y/synfig/tree/djay_fix906_C++11Support C++11Support branch] for progress.
 
Have a look to [https://github.com/d-j-a-y/synfig/tree/djay_fix906_C++11Support C++11Support branch] for progress.
 +
 +
==C++11 compliance or Migration==
 +
* TODO
  
 
==Enable C++ Support==
 
==Enable C++ Support==

Revision as of 12:41, 21 January 2016

Have a look to C++11Support branch for progress.

C++11 compliance or Migration

  • TODO

Enable C++ Support

Fix Code to be compliant

  • DONE : replace isnan , isinf by std::isnan , std::isinf
  • replace NULL/0 by nullptr (BOOST MACRO)
  • update sigc++
  • FIXED : "lvalue required as unary '&' operand" errors (info [1] [2] [3] )

Useful information about C++11 Migration