Talk:Generic vector sort (C++)

From RAD Studio Code Examples
Jump to: navigation, search

Minor suggestion: I would prefer that we illustrate how to use the code with both bcc64 and bcc32 using

#ifdef _WIN64
  // bcc64 specific code
#else
  // bcc32/osx code

Also: very minor - you could illustrate the C++11 override function specifier in this sample.