Skip to content
Snippets Groups Projects
  1. Apr 11, 2013
  2. Apr 03, 2013
  3. Apr 02, 2013
  4. Mar 13, 2013
  5. Feb 13, 2013
  6. Jan 29, 2013
  7. Jan 24, 2013
  8. Jan 16, 2013
  9. Jan 08, 2013
    • Orgad Shaneh's avatar
      Remove braces for single lines of conditions · 29a93998
      Orgad Shaneh authored
      
      #!/usr/bin/env ruby
      
      Dir.glob('**/*.cpp') { |file|
        # skip ast (excluding paste, astpath, and canv'ast'imer)
        next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
        s = File.read(file)
        next if s.include?('qlalr')
        orig = s.dup
        s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
          res = $&
          if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
            res
          else
            res.gsub!('} else', 'else')
            res.gsub!(/\n +} *\n/m, "\n")
            res.gsub(/ *{$/, '')
          end
        }
        s.gsub!(/ *$/, '')
        File.open(file, 'wb').write(s) if s != orig
      }
      
      Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
      Reviewed-by: default avatarhjk <qthjk@ovi.com>
      29a93998
  10. Nov 27, 2012
  11. Oct 05, 2012
  12. Oct 03, 2012
  13. Sep 27, 2012
  14. Jul 30, 2012
  15. Jul 19, 2012
  16. May 25, 2012
  17. Mar 02, 2012
  18. Feb 15, 2012
  19. Feb 09, 2012
  20. Feb 08, 2012
  21. Jan 26, 2012
  22. Jan 24, 2012
  23. Dec 19, 2011
  24. Nov 03, 2011
  25. Oct 26, 2011
  26. Sep 26, 2011
  27. Sep 21, 2011
  28. Sep 19, 2011
Loading