Skip to content
Snippets Groups Projects
  1. Mar 03, 2017
  2. Mar 01, 2017
  3. Feb 28, 2017
  4. Feb 14, 2017
    • Raphael Isemann's avatar
      Remove all redundant header guards around include directives · 04fe6d5d
      Raphael Isemann authored
      
      Many headers contains redundant header guards around #include directives:
      
          #ifndef ROOT_TTree
          #include "TTree.h"
          #endif
      
      This patch removes the #ifndef's around these includes as they
      don't serve any pratical purpose anymore and are no longer part
      of the current ROOT coding convention.
      
      This patch also fixes the 153 typos that are contained in the
      symbols of the #ifndef directives.
      
      Signed-off-by: default avatarVassil Vassilev <vvasilev@cern.ch>
      04fe6d5d
  5. Dec 17, 2016
  6. Dec 14, 2016
    • Vassil Vassilev's avatar
      Move each header in a submodule. · 8d6b3e8d
      Vassil Vassilev authored
      This is the recommended way of using the modules feature and should pave our way
      of enabling -fmodules-local-submodules-visibility mode.
      8d6b3e8d
    • Vassil Vassilev's avatar
      [cmake][make] Automatically generate bug chunk of the modulemap. · ca144dfa
      Vassil Vassilev authored
      Our two build systems can generate almost entirely a modulemap file laying out
      one module per library. Due to some non-modular implementation in ROOT's core we
      still need to treat some header files specially.
      
      This patch appends modular header files to the modulemap while skipping the
      predefined ones. Configure-make relates all headers that are installed in
      $ROOTSYS/include to their library whereas relates only headers which are part of
      library's dictionary.
      ca144dfa
  7. Mar 15, 2016
  8. Dec 23, 2015
  9. Dec 22, 2015
  10. Dec 10, 2015
  11. Nov 26, 2015
  12. Oct 16, 2015
  13. Aug 23, 2015
  14. Jun 26, 2015
  15. Jun 02, 2015
  16. May 05, 2015
  17. Jan 29, 2015
  18. Jan 07, 2015
  19. Nov 29, 2014
  20. Nov 03, 2014
  21. Sep 25, 2014
  22. Sep 23, 2014
    • Bertrand Bellenot's avatar
      From Oliver Freyermuth: Fix a small issue in TSQLiteStatement · 34e10f62
      Bertrand Bellenot authored
      Fix Jira issue #ROOT-6511 TSQLiteStatement: Missing / wrong check for column index, failing IsNull(), as reported by Oliver Freyermuth:
      Finally, my colleagues managed to uncover a small issue in my TSQLiteStatement implementation:
      "IsNull()" checked the column-count in the wrong way (it used the number of bound columns which is only valid in prepared inserts).
      I have done the following changes to TSQLiteStatement in the attached patch:
      1. In fNumPars, I now store either the "bind" columns for a prepared statement with bound parameters, or the number of returned columns for a simple select without binding. This also simplifies error handling and TSQLiteStatement::GetNumFields() now just returns the variable which is correct in both working modes.
      2. All Get'ters now check the column-number consistently, as the SQLite-documentation states that "get"ting an invalid column number returns undefined results. Note that for bound parameters, SQLite behaves differently and does the error handling itself (which I already check in TSQLiteStatement).
      34e10f62
  23. Aug 05, 2014
  24. Jun 06, 2014
  25. Apr 29, 2014
  26. Feb 12, 2014
  27. Jan 31, 2014
    • Danilo Piparo's avatar
      Fix the CMake build · 880fe6d6
      Danilo Piparo authored
      now the library names in the rootmaps are sane.
      In addition, the creation of the tmva and genvector dicts was
      simplified.
      880fe6d6
  28. Jan 21, 2014
  29. Jan 17, 2014
  30. Jan 15, 2014
  31. Jan 12, 2014
  32. Jan 09, 2014
  33. Dec 17, 2013
  34. Dec 05, 2013
  35. Nov 25, 2013
  36. Nov 18, 2013
Loading