Hey, after doing a quick survey I noticed that there are some places where ci::Buffers are being passed by value (like in the various onRead() methods). Where this was almost free before, it will now cause the Buffer to be copied, so once this goes through you'll probably want to either update those to be BufferRefs or pass by const&.
Hey, after doing a quick survey I noticed that there are some places where
ci::Buffers are being passed by value (like in the variousonRead()methods). Where this was almost free before, it will now cause theBufferto be copied, so once this goes through you'll probably want to either update those to beBufferRefs or pass by const&.