summaryrefslogtreecommitdiff
path: root/indra/llfilesystem/llfilesystem.h
diff options
context:
space:
mode:
authorCallum Prentice <callum@gmail.com>2020-10-06 18:18:18 -0700
committerCallum Prentice <callum@gmail.com>2020-10-06 18:18:18 -0700
commita0ea119623b8bda445f86afdb0ea7b5833c8e171 (patch)
tree5080c5d902654307306e8a94a9f0ec94a432398f /indra/llfilesystem/llfilesystem.h
parent56e30615530bf5d1c86fbafee89c9998a079e88f (diff)
Replace references to static writefile with write so we end up with only a single read and a single write function
Diffstat (limited to 'indra/llfilesystem/llfilesystem.h')
-rw-r--r--indra/llfilesystem/llfilesystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llfilesystem/llfilesystem.h b/indra/llfilesystem/llfilesystem.h
index 789f9456c7..5d87de9bf8 100644
--- a/indra/llfilesystem/llfilesystem.h
+++ b/indra/llfilesystem/llfilesystem.h
@@ -1,4 +1,5 @@
/**
+/**
* @file filesystem.h
* @brief Simulate local file system operations.
* @Note The initial implementation does actually use standard C++
@@ -46,7 +47,6 @@ public:
BOOL eof();
BOOL write(const U8 *buffer, S32 bytes);
- static BOOL writeFile(const U8 *buffer, S32 bytes, const LLUUID &uuid, LLAssetType::EType type);
BOOL seek(S32 offset, S32 origin = -1);
S32 tell() const;