Skip to content

Commit

Permalink
another fixes in default constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
gsomix committed May 9, 2012
1 parent bb6c2a7 commit f416fe9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/shogun/lib/Map.h
Expand Up @@ -57,7 +57,7 @@ IGNORE_IN_CLASSLIST template<class K, class T> class CMap: public CSGObject
{
public:
/** Custom constructor */
CMap(int32_t size=1, int32_t reserved=1, bool tracable=true)
CMap(int32_t size=41, int32_t reserved=128, bool tracable=true)
{
hash_size=size;
free_index=0;
Expand Down
2 changes: 1 addition & 1 deletion src/shogun/lib/Set.h
Expand Up @@ -50,7 +50,7 @@ template<class T> class CSet: public CSGObject
{
public:
/** Custom constructor */
CSet(int32_t size=1, int32_t reserved=1, bool tracable=true)
CSet(int32_t size=41, int32_t reserved=128, bool tracable=true)
{
hash_size=size;
free_index=0;
Expand Down

0 comments on commit f416fe9

Please sign in to comment.