Index: runtime/vm/datastream.h |
diff --git a/runtime/vm/datastream.h b/runtime/vm/datastream.h |
index d75d5c03fbd27ca73b3b8051609061dac3e1ec8c..0a4c0cef0c473ba2e5e1c266aa658cf12f547cb7 100644 |
--- a/runtime/vm/datastream.h |
+++ b/runtime/vm/datastream.h |
@@ -218,7 +218,7 @@ class WriteStream : public ValueObject { |
WriteByte(static_cast<uint8_t>(v + kEndByteMarker)); |
} |
- void WriteByte(uint8_t value) { |
+ DART_FORCE_INLINE void WriteByte(uint8_t value) { |
Ivan Posva
2013/02/26 22:23:49
Extra space before the {.
|
if (current_ >= end_) { |
Resize(1); |
} |