Skip to content

Commit 5d267b6

Browse files
committed
Fixed errors
1 parent 4d4ce4d commit 5d267b6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/base/Enum.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ inline FlagContainer<E> operator|(const E& a, const FlagContainer<E>& b) { retur
6767

6868
#define PR_MAKE_FLAGS(single_type, cont_type) \
6969
using cont_type = typename PR::FlagContainer<single_type>; \
70-
inline cont_type operator|(const single_type& a, const single_type& b) { return cont_type(a) | b; }
70+
inline cont_type operator|(const single_type& a, const single_type& b) { return cont_type(a) | b; }

src/vcm/vcm/Tracer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace PR {
2121
namespace VCM {
2222

2323
// This is based on http://www.smallvcm.com/
24-
template <bool UseMerging, MISMode Mode = MM_Balance>
24+
template <bool UseMerging, MISMode Mode = MISMode::Balance>
2525
class Tracer {
2626
public:
2727
using IterationContext = TracerIterationContext<UseMerging, Mode>;

0 commit comments

Comments
 (0)