Author Topic: r10308 issue: only allow alpha, number and space in macro definition?  (Read 7626 times)

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5910
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
In CC, we have many other special replacement rules, or some macro definitions which could have other than the chars in
Code
static const wxRegEx reKey(wxT("^[[:alnum:]_]+$"), wxRE_EXTENDED);

See: Code Completion Design - CodeBlocks

So, this is an issue.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.