File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Local files generated by IDEs
2
+ .vs /*
2
3
.vscode /*
4
+ ~AutoRecover. *
5
+ * .sln
6
+ * .vcxproj *
7
+ scripts /__pycache__ /*
8
+ src /goto-analyzer /taint_driver_scripts /.idea /*
9
+ /* .config
10
+ /* .creator
11
+ /* .creator.user
12
+ /* .files
13
+ /* .includes
3
14
4
15
# compilation files
5
16
* .lo
Original file line number Diff line number Diff line change @@ -148,6 +148,8 @@ inline std::size_t basic_hash_finalize(
148
148
return h1;
149
149
}
150
150
151
+ // Boost uses the symbol hash_combine, if you're getting problems here then
152
+ // you've probably included a Boost header after this one
151
153
#define hash_combine (h1, h2 ) \
152
154
basic_hash_combine<sizeof (std::size_t )*8 >(h1, h2)
153
155
#define hash_finalize (h1, len ) \
Original file line number Diff line number Diff line change @@ -147,13 +147,13 @@ class json_arrayt:public jsont
147
147
jsont &push_back (const jsont &json)
148
148
{
149
149
array.push_back (json);
150
- return static_cast <jsont &>( array.back () );
150
+ return array.back ();
151
151
}
152
152
153
153
jsont &push_back ()
154
154
{
155
155
array.push_back (jsont ());
156
- return static_cast <jsont &>( array.back () );
156
+ return array.back ();
157
157
}
158
158
};
159
159
You can’t perform that action at this time.
0 commit comments