Skip to content
Snippets Groups Projects
  1. Jan 08, 2014
  2. Dec 11, 2013
  3. Oct 10, 2013
  4. Oct 09, 2013
  5. Sep 05, 2013
  6. Sep 04, 2013
  7. Sep 03, 2013
  8. Sep 02, 2013
  9. Aug 01, 2013
  10. Jul 09, 2013
  11. Jun 03, 2013
  12. May 29, 2013
  13. May 27, 2013
  14. Apr 11, 2013
  15. Apr 10, 2013
  16. Apr 08, 2013
  17. Apr 03, 2013
  18. Apr 02, 2013
  19. Mar 13, 2013
  20. Feb 21, 2013
  21. Jan 29, 2013
  22. Jan 18, 2013
  23. 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
  24. Jan 04, 2013
  25. Nov 28, 2012
  26. Oct 05, 2012
  27. Oct 03, 2012
  28. Sep 12, 2012
  29. Jul 30, 2012
  30. Jul 19, 2012
  31. Jun 19, 2012
  32. May 11, 2012
  33. Apr 10, 2012
  34. Mar 14, 2012
Loading