Index: runtime/vm/datastream.h |
diff --git a/runtime/vm/datastream.h b/runtime/vm/datastream.h |
index d75d5c03fbd27ca73b3b8051609061dac3e1ec8c..dd814b7f06ec388dca2ebca960ae9bbc7c579fec 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) { |
if (current_ >= end_) { |
Resize(1); |
} |