Commit 4f0905da by Aaron Leung

Touching up some whitespace.

parent d3423177
...@@ -81,9 +81,9 @@ namespace Sass { ...@@ -81,9 +81,9 @@ namespace Sass {
bool Token::operator<(const Token& rhs) const bool Token::operator<(const Token& rhs) const
{ {
const char* first1 = begin; const char* first1 = begin;
const char* last1 = end; const char* last1 = end;
const char* first2 = rhs.begin; const char* first2 = rhs.begin;
const char* last2 = rhs.end; const char* last2 = rhs.end;
while (first1!=last1) while (first1!=last1)
{ {
if (first2==last2 || *first2<*first1) return false; if (first2==last2 || *first2<*first1) return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment