This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
sys: fix unititialised class member in File.
undefined
Sam Hocevar
10 years ago
parent
7babf9dfde
commit
e996e953c8
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
src/sys/file.cpp
+ 4
- 1
src/sys/file.cpp
View File
@@ -44,7 +44,10 @@ class FileData
{
friend class File;
FileData() : m_type(StreamType::File) { }
FileData()
: m_refcount(0),
m_type(StreamType::File)
{ }
void Open(StreamType stream)
{
Write
Preview
Loading…
Cancel
Save