summaryrefslogtreecommitdiff
path: root/include/phat/representations
diff options
context:
space:
mode:
authorjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-04-08 14:17:23 +0000
committerjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-04-08 14:17:23 +0000
commit0d115b793d42f3a57a9c32a42c78f9dede58b539 (patch)
treeb1c19d174a0b8568b5d23b17ce88cba577d87298 /include/phat/representations
parent1b9b34965381ca7e0f014d957e0a7cd382ea30ec (diff)
compile fix for VC12
git-svn-id: https://phat.googlecode.com/svn/branches/bit-tree@22 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d
Diffstat (limited to 'include/phat/representations')
-rw-r--r--include/phat/representations/bit_tree_pivot_column.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/phat/representations/bit_tree_pivot_column.h b/include/phat/representations/bit_tree_pivot_column.h
index 53956a4..0ff0998 100644
--- a/include/phat/representations/bit_tree_pivot_column.h
+++ b/include/phat/representations/bit_tree_pivot_column.h
@@ -33,7 +33,7 @@ namespace phat {
size_t offset; // present_data[i + offset] = ith block of the data-bitset
typedef uint64_t block_type;
std::vector<block_type> present_data;
- block_type * const present; // to prevent error checking in MS's vector...
+ block_type * present; // to prevent error checking in MS's vector...
enum { block_size_in_bits = 64 };
enum { block_shift = 6 };