Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct flag for single or double.
  • Loading branch information
johnmay committed Mar 5, 2015
1 parent c64509b commit 9845964
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -183,7 +183,7 @@ public class CDKConstants {
* written with a lower case letter, e.g. 'c' rather than 'C'</li>
* </ul>
*/
public final static int SINGLE_OR_DOUBLE = 12;
public final static int SINGLE_OR_DOUBLE = 1 << 12;
/**
* Maximum flags array index. Please update this if the value exceeds 16 -
* the flags are currently stored as a single short value (16-bit) in the
Expand Down

1 comment on commit 9845964

@egonw
Copy link
Member

@egonw egonw commented on 9845964 Mar 5, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense.

Please sign in to comment.