Axiom.RenderSystems.OpenGL.ATI.Compiler2Pass.FindEndOfLine C# (CSharp) Method

FindEndOfLine() protected method

protected FindEndOfLine ( ) : void
return void
		protected void FindEndOfLine()
		{
			int newPos = source.IndexOf( '\n', charPos );

			if ( newPos != -1 )
			{
				charPos += newPos - charPos;
			}
			else
			{
				charPos = endOfSource - 1;
			}
		}