We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 712469a commit a54c50bCopy full SHA for a54c50b
source/mir/appender.d
@@ -34,7 +34,7 @@ struct ScopedBuffer(T, size_t bytes = 4096)
34
return *cast(inout(T[_bufferLength])*)&_scopeBufferPayload;
35
}
36
37
- private T[] prepare(size_t n) @trusted return scope
+ private T[] prepare(size_t n) @trusted return
38
{
39
import mir.internal.memory: realloc, malloc;
40
_currentLength += n;
@@ -210,7 +210,7 @@ struct ScopedBuffer(T, size_t bytes = 4096)
210
211
212
///
213
- inout(T)[] data() inout @property @safe return scope
+ inout(T)[] data() inout @property @safe return
214
215
return _buffer.length ? _buffer[0 .. _currentLength] : _scopeBuffer[0 .. _currentLength];
216
0 commit comments