Skip to content
Snippets Groups Projects
  1. Feb 12, 2014
    • Orgad Shaneh's avatar
      Clean up single namespace forward-declarations · 7ed15760
      Orgad Shaneh authored
      
      Done using the following ruby script:
      
      Dir.glob('**/*.h').each { |file|
        if File.file?(file)
          s = File.read(file)
          t = s.gsub(/^namespace .+ \{\n\s*class .*;\n\s*\}.*$/) { |m| m.gsub(/\n\s*/, ' ').gsub(/\s*\/\/.*$/, '') }
          if t != s
            puts file
            File.open(file, 'w').write(t)
          end
        end
      }
      
      Change-Id: Iffcb966e90eb8e1a625eccd5dd0b94f000ae368e
      Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
      7ed15760
  2. Jan 08, 2014
  3. Oct 10, 2013
  4. May 17, 2013
  5. Apr 08, 2013
  6. Jan 29, 2013
  7. Dec 12, 2012
  8. Oct 05, 2012
  9. Jul 19, 2012
  10. Jan 26, 2012
  11. Nov 03, 2011
  12. Jul 06, 2011
  13. Jun 22, 2011
Loading