Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(613)

Side by Side Diff: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/GCCUtilities.cs

Issue 10908249: Remove windows line ending from repo files (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: fix copyright headers Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 using System; 1 using System;
2 using System.Collections.Generic; 2 using System.Collections.Generic;
3 using System.Linq; 3 using System.Linq;
4 using System.Text; 4 using System.Text;
5 5
6 using System.IO; 6 using System.IO;
7 using System.Text.RegularExpressions; 7 using System.Text.RegularExpressions;
8 8
9 namespace NaCl.Build.CPPTasks 9 namespace NaCl.Build.CPPTasks
10 { 10 {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 }, 92 },
93 new GCCRegexLineConverter 93 new GCCRegexLineConverter
94 { 94 {
95 OutputExpression = new Regex(@"^\s*(.?.?[^:]*.*?):(.?.?[^:] *.*?):([1-9]\d*):(.*$)"), 95 OutputExpression = new Regex(@"^\s*(.?.?[^:]*.*?):(.?.?[^:] *.*?):([1-9]\d*):(.*$)"),
96 FilenameIdentifier = @"$2", 96 FilenameIdentifier = @"$2",
97 RemainderIdentifier = @"($3):'$1' $4" 97 RemainderIdentifier = @"($3):'$1' $4"
98 } 98 }
99 }; 99 };
100 } // GCCUtilities 100 } // GCCUtilities
101 } // namespace 101 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698