From 27c1e89a4b82b205cbc11fd2f18dcb9e5f033dfb Mon Sep 17 00:00:00 2001
From: Misha Brukman <brukman+llvm@gmail.com>
Date: Fri, 2 Jan 2009 21:24:29 +0000
Subject: [PATCH] VerifyLineLength() actually takes a max length parameter.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61593 91177308-0d34-0410-b5e6-96231b3b80d8
---
 utils/lint/cpp_lint.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/utils/lint/cpp_lint.py b/utils/lint/cpp_lint.py
index e26fb707c96..ca81bfe35d8 100755
--- a/utils/lint/cpp_lint.py
+++ b/utils/lint/cpp_lint.py
@@ -65,9 +65,11 @@ def VerifyIncludes(filename, lines):
 
 
 class CppLint(common_lint.BaseLint):
+  MAX_LINE_LENGTH = 80
+
   def RunOnFile(self, filename, lines):
     VerifyIncludes(filename, lines)
-    common_lint.VerifyLineLength(filename, lines)
+    common_lint.VerifyLineLength(filename, lines, CppLint.MAX_LINE_LENGTH)
     common_lint.VerifyTrailingWhitespace(filename, lines)