mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
examples: fix news_fetcher on Windows
This commit is contained in:
@ -7,11 +7,11 @@ module sync
|
||||
struct Mutex {
|
||||
}
|
||||
|
||||
fn (m Mutex) lock() {
|
||||
panic('not implemented')
|
||||
pub fn (m Mutex) lock() {
|
||||
//panic('not implemented')
|
||||
}
|
||||
|
||||
fn (m Mutex) unlock() {
|
||||
panic('not implemented')
|
||||
pub fn (m Mutex) unlock() {
|
||||
//panic('not implemented')
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user