Skip to content
This repository has been archived by the owner on Apr 13, 2020. It is now read-only.

Commit

Permalink
Fixed bug - forgot to return false on errors
Browse files Browse the repository at this point in the history
  • Loading branch information
philip pittle committed Jul 15, 2014
1 parent 8ba9dd1 commit e8f0fdf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ public bool PerformTask(pMixinGeneratorPipelineState manager)
Column = (uint)manager.SourceClass.GetRegion().EndLine,
Severity = CodeGenerationError.SeverityOptions.Error
});

}

return false;
}

return true;
Expand Down

0 comments on commit e8f0fdf

Please sign in to comment.