Skip to content
Snippets Groups Projects
  1. 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
  2. Mar 21, 2013
  3. 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
  4. Jan 23, 2013
  5. Dec 27, 2012
  6. Nov 24, 2012
  7. Sep 20, 2012
  8. May 23, 2012
  9. May 21, 2012
  10. May 20, 2012
  11. May 19, 2012
  12. May 17, 2012
  13. May 16, 2012
  14. May 07, 2012
  15. Apr 05, 2012
  16. Mar 10, 2012
  17. Feb 20, 2012
  18. Feb 19, 2012
  19. Feb 17, 2012
  20. 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
  21. 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
  22. Feb 11, 2012
Loading