Skip to content
Snippets Groups Projects
  1. Jan 25, 2014
  2. Jan 24, 2014
  3. Jan 23, 2014
  4. Jan 22, 2014
  5. Dec 20, 2013
  6. Aug 13, 2013
  7. Aug 09, 2013
  8. 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
  9. Mar 21, 2013
  10. 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
  11. Jan 23, 2013
  12. Dec 27, 2012
  13. Nov 24, 2012
  14. Sep 20, 2012
  15. May 23, 2012
  16. May 21, 2012
  17. May 20, 2012
  18. May 19, 2012
  19. May 17, 2012
  20. May 16, 2012
  21. May 07, 2012
  22. Apr 05, 2012
  23. Mar 10, 2012
  24. Feb 20, 2012
  25. Feb 19, 2012
  26. Feb 17, 2012
  27. Feb 16, 2012
    • jsiegle's avatar
      Fixed bug in GenericProcessor::setDestNode · 0e8dac82
      jsiegle authored
      Previously, if you placed a sink in front of a source, it would lead to
      a never-ending "while" loop. By removing two lines (254-255), this problem
      was solved.
      0e8dac82
  28. Feb 13, 2012
    • jsiegle's avatar
      Changes to DataViewport class · 1ad5f3ae
      jsiegle authored
      Tabs now work reasonably well when right-justified.
      
      Border is now a square (except for upper-right corner).
      1ad5f3ae
  29. Feb 11, 2012
Loading