From 9743b5276f17d888a2c0dc97d3b3e75604e1200d Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 26 Jan 2006 01:30:21 +0000 Subject: [PATCH] make auto_unwrap a required parameter --- panda/src/express/virtualFileSystem.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/express/virtualFileSystem.h b/panda/src/express/virtualFileSystem.h index bddc9c87ea..582be9132e 100644 --- a/panda/src/express/virtualFileSystem.h +++ b/panda/src/express/virtualFileSystem.h @@ -82,12 +82,12 @@ PUBLISHED: static VirtualFileSystem *get_global_ptr(); - INLINE string read_file(const Filename &filename, bool auto_unwrap = false) const; - INLINE istream *open_read_file(const Filename &filename, bool auto_unwrap = false) const; + INLINE string read_file(const Filename &filename, bool auto_unwrap) const; + INLINE istream *open_read_file(const Filename &filename, bool auto_unwrap) const; void close_read_file(istream *stream) const; public: - INLINE bool read_file(const Filename &filename, string &result, bool auto_unwrap = false) const; + INLINE bool read_file(const Filename &filename, string &result, bool auto_unwrap) const; void scan_mount_points(vector_string &names, const Filename &path) const;