blackh Wed Aug 27 05:43:43 2003 EDT
Modified files:
/grapevine/cpp Fact.h
Log:
This should fix the bug where the SAHP powers are being sorted alphabetically
instead of numerically.
Index: grapevine/cpp/Fact.h
diff -u grapevine/cpp/Fact.h:1.31 grapevine/cpp/Fact.h:1.32
--- grapevine/cpp/Fact.h:1.31 Wed Aug 27 05:34:16 2003
+++ grapevine/cpp/Fact.h Wed Aug 27 05:43:43 2003
@@ -1,4 +1,4 @@
-// $Id: Fact.h,v 1.31 2003/08/27 12:34:16 blackh Exp $
+// $Id: Fact.h,v 1.32 2003/08/27 12:43:43 blackh Exp $
#include "Object.h" // must be here or MSVC barfs: error C2680: 'class FactImpl *' : invalid target type for dynamic_cast
@@ -49,7 +49,7 @@
enum SortStyle {
// Masks
- SSM_TYPE = 0x01,
+ SSM_TYPE = 0x03,
SSM_DIRECTION = 0x04,
// Type values
|