Skip to content
Snippets Groups Projects
  1. Jan 09, 2017
  2. Apr 26, 2016
  3. Jun 04, 2015
  4. Oct 09, 2014
  5. Sep 18, 2014
  6. Sep 12, 2014
  7. Sep 10, 2014
  8. Aug 29, 2014
  9. Aug 26, 2014
  10. Aug 04, 2014
  11. Jan 28, 2014
  12. Jan 25, 2014
  13. Jan 24, 2014
  14. Jan 23, 2014
  15. Jan 22, 2014
  16. Dec 20, 2013
  17. Aug 13, 2013
  18. Aug 09, 2013
  19. Apr 05, 2013
    • jsiegle's avatar
      Run astyle to make code format more consistent · ea8c1c90
      jsiegle authored
      To run this in the future, install astyle (sudo apt-get install astyle),
      then enter the following from the top-level project directory:
      
      astyle --options=astyle.options --recursive "./Source/*.cpp" "./Source/*.h"
      
      This will convert tabs to 4 spaces and ensure that brackets are on
      their own lines.
      ea8c1c90
  20. Mar 21, 2013
  21. Feb 12, 2013
    • Marti Bolivar's avatar
      Fix up unused variable/value warnings. · 12574cf1
      Marti Bolivar authored
      
      Generic changes:
      
      - Genuinely unused variables (-Wunused-variable): delete
        them. Sometimes add a comment if the variable is for an extension of
        the code that isn't done yet.
      
      - Variables that became unused due to commented-out
        code (-Wunused-variable): comment out their definitions. Dirty, but
        that's because commenting out code instead of deleting it is
        dirty.
      
        Many of these are due to commented-out printlines that should have
        been log messages that only get emitted at high verbosity level.
      
      Specific changes:
      
      - SpikeObject.cpp (-Wunused-value): move initialization of loop
        variable into first for loop clause to silence the warning.
      
      Signed-off-by: default avatarMarti Bolivar <mbolivar@leaflabs.com>
      12574cf1
  22. Jan 23, 2013
  23. Dec 27, 2012
  24. Nov 24, 2012
  25. Sep 20, 2012
  26. May 23, 2012
  27. May 21, 2012
  28. May 20, 2012
  29. May 19, 2012
  30. May 17, 2012
  31. May 16, 2012
Loading