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

Unified Diff: pkg/compiler/lib/src/universe/side_effects.dart

Issue 1155633002: Fix 56 hints in pkg/compiler (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/universe/side_effects.dart
diff --git a/pkg/compiler/lib/src/universe/side_effects.dart b/pkg/compiler/lib/src/universe/side_effects.dart
index 6b35429a22deea413f690bc1f36598e8e3ec4155..66b4aa76fc709cfb37277c7ab516810d39e3f0b5 100644
--- a/pkg/compiler/lib/src/universe/side_effects.dart
+++ b/pkg/compiler/lib/src/universe/side_effects.dart
@@ -39,7 +39,7 @@ class SideEffects {
bool _getFlag(int position) => (_flags & (1 << position)) != 0;
void _setFlag(int position) { _flags |= (1 << position); }
- bool _clearFlag(int position) { _flags &= ~(1 << position); }
+ void _clearFlag(int position) { _flags &= ~(1 << position); }
int getChangesFlags() => _flags & ((1 << FLAG_CHANGES_COUNT) - 1);
int getDependsOnFlags() {

Powered by Google App Engine
This is Rietveld 408576698