mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
std/lib: fix module path for RingBuffer
Signed-off-by: Pierre Curto <pierre.curto@gmail.com>
This commit is contained in:
committed by
Christoffer Lerno
parent
f39dd82adc
commit
6c3d6a4b05
@@ -1,4 +1,4 @@
|
||||
module collections::ringbuffer(<Type, SIZE>);
|
||||
module std::collections::ringbuffer(<Type, SIZE>);
|
||||
|
||||
struct RingBuffer
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
module ringbuffer_test @test;
|
||||
import collections::ringbuffer;
|
||||
import std::collections::ringbuffer;
|
||||
import std::io;
|
||||
|
||||
def Buffer = RingBuffer(<char, 4>);
|
||||
|
||||
Reference in New Issue
Block a user