mirror of
https://github.com/boostorg/python.git
synced 2026-01-21 05:02:17 +00:00
- Added a new function, no_override. When a member function is specified as "no_override", no virtual wrappers are generated for it, improving performance and letting the code more clean. - There was a bug in which the policy of virtual member functions was being ignored (patch by Roman Sulzhyk). [SVN r18814]
8 lines
189 B
C++
8 lines
189 B
C++
#include "vars.h"
|
|
|
|
const Color black = Color(0, 0, 0);
|
|
const Color red = Color(255, 0, 0);
|
|
const Color green = Color(0, 255, 0);
|
|
const Color blue = Color(0, 0, 255);
|
|
Color in_use = black;
|