diff options
author | lloyd <[email protected]> | 2006-08-05 11:31:11 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-05 11:31:11 +0000 |
commit | 1942fdac5ccad80b42f23083e2f8c8e1281989b3 (patch) | |
tree | 69d3ceea09cc1c20dcabf5cfaa5a6fdd3d9bfe5f /include/modules.h | |
parent | 1ad291aa76b79216a1560dafe0dbabab4c28b9dd (diff) |
The use_engines flag was not being respected; specifically, if there
were any engines built into the library, they were used no matter what.
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules.h b/include/modules.h index f81fcb64a..f0855e4af 100644 --- a/include/modules.h +++ b/include/modules.h @@ -49,7 +49,7 @@ class Builtin_Modules : public Modules Builtin_Modules(const InitializerOptions&); private: - const bool should_lock; + const bool should_lock, use_engines; }; } |