1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

strings: builder: write_b()

This commit is contained in:
João Victor Oliveira Couto
2019-12-06 17:02:09 -03:00
committed by Alexander Medvednikov
parent 55f32fc413
commit 5a8c07dcf5
8 changed files with 26 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ pub fn (cb mut Clipboard) destroy() {
}
// check if we own the clipboard
pub fn (cb mut Clipboard) check_ownership() bool {
pub fn (cb Clipboard) check_ownership() bool {
return cb.has_ownership()
}