Fix for nvault not loading on some Linux servers - nvault no longer uses exceptions, so libstdc++ is no longer needed

This commit is contained in:
Steve Dudenhoeffer
2008-03-04 19:06:39 +00:00
parent b0286c9c4d
commit 69a8a86ff6
8 changed files with 292 additions and 209 deletions

View File

@@ -39,9 +39,9 @@ public:
bool Write_Insert(const char *key, const char *val, time_t stamp);
bool Write_Remove(const char *key);
private:
void WriteOp(JOp op);
void WriteInt32(int num);
void WriteString(const char *str, Encode enc);
bool WriteOp(JOp op);
bool WriteInt32(int num);
bool WriteString(const char *str, Encode enc);
private:
String m_File;
FILE *m_fp;