summaryrefslogtreecommitdiff
path: root/indra/lscript/lscript_compile/lscript_error.h
diff options
context:
space:
mode:
authorSteven Bennetts <steve@lindenlab.com>2008-05-08 18:41:20 +0000
committerSteven Bennetts <steve@lindenlab.com>2008-05-08 18:41:20 +0000
commit63e7894148fdc7064b422bf65a0b75ffcf293496 (patch)
tree4cca89d9da518f264001e7cb4950f453647f2e5f /indra/lscript/lscript_compile/lscript_error.h
parenta75b85112ffa4b7140561083c2e5de05fb510805 (diff)
QAR-570 maint-render-4 merge
merge -r 87067:87077 svn+ssh://svn.lindenlab.com/svn/linden/branches/maint-render/maint-render-4-merge -> release. dataserver-is-deprecated.
Diffstat (limited to 'indra/lscript/lscript_compile/lscript_error.h')
-rw-r--r--indra/lscript/lscript_compile/lscript_error.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/lscript/lscript_compile/lscript_error.h b/indra/lscript/lscript_compile/lscript_error.h
index aba3932c14..8c9e35d56b 100644
--- a/indra/lscript/lscript_compile/lscript_error.h
+++ b/indra/lscript/lscript_compile/lscript_error.h
@@ -84,13 +84,13 @@ public:
virtual ~LLScriptFilePosition() {}
- virtual void recurse(FILE *fp, S32 tabs, S32 tabsize,
+ virtual void recurse(LLFILE *fp, S32 tabs, S32 tabsize,
LSCRIPTCompilePass pass, LSCRIPTPruneType ptype, BOOL &prunearg,
LLScriptScope *scope, LSCRIPTType &type, LSCRIPTType basetype, U64 &count,
LLScriptByteCodeChunk *chunk, LLScriptByteCodeChunk *heap, S32 stacksize, LLScriptScopeEntry *entry, S32 entrycount, LLScriptLibData **ldata) = 0;
virtual S32 getSize() = 0;
- void fdotabs(FILE *fp, S32 tabs, S32 tabsize);
+ void fdotabs(LLFILE *fp, S32 tabs, S32 tabsize);
S32 mLineNumber;
S32 mColumnNumber;
@@ -135,10 +135,10 @@ public:
void init() { mTotalErrors = 0; mTotalWarnings = 0; }
- void writeWarning(FILE *fp, LLScriptFilePosition *pos, LSCRIPTWarnings warning);
- void writeWarning(FILE *fp, S32 line, S32 col, LSCRIPTWarnings warning);
- void writeError(FILE *fp, LLScriptFilePosition *pos, LSCRIPTErrors error);
- void writeError(FILE *fp, S32 line, S32 col, LSCRIPTErrors error);
+ void writeWarning(LLFILE *fp, LLScriptFilePosition *pos, LSCRIPTWarnings warning);
+ void writeWarning(LLFILE *fp, S32 line, S32 col, LSCRIPTWarnings warning);
+ void writeError(LLFILE *fp, LLScriptFilePosition *pos, LSCRIPTErrors error);
+ void writeError(LLFILE *fp, S32 line, S32 col, LSCRIPTErrors error);
BOOL getErrors() { return mTotalErrors; }
BOOL getWarnings() { return mTotalWarnings; }