Skip to content
Snippets Groups Projects
  1. Dec 18, 2016
    • Mark Olesen's avatar
      ENH: initializer list constructor for fileName · b08dadff
      Mark Olesen authored
      This slightly more convenient when working with char[] input:
      
           fileName file1{ "path", "name", "to", "file.ext" };
      vs.  fileName file1 = fileName(path)/"name"/"to"/"file.ext";
      
      But is a bit more efficient since it avoid most of the intermediate
      copying and resizing incurred by the '/' operator.
      b08dadff
  2. Dec 19, 2016
  3. Dec 18, 2016
  4. Dec 19, 2016
  5. Dec 18, 2016
  6. Dec 16, 2016
  7. Dec 15, 2016