show/hide this revision's text 3 added 139 characters in body

Why not just cast the result back to a Foo?

Foo x = Foo(Foo_First | Foo_Second);

EDIT: I didn't understand the scope of your problem when I first answered this :

You can question. The above will work for doing a few spot fixes. For what you want to dothis, you will need to define a | operator that takes 2 Foo arguments and returns a Foo:

Foo operator|(Foo a, Foo b)
{
    return Foo(int(a) | int(b));
}

The int casts are there to prevent undesired recursion.

show/hide this revision's text 2 added 268 characters in body

Why not just cast the result back to a Foo?

Foo x = Foo(Foo_First | Foo_Second);

EDIT: I didn't understand the scope of your problem when I first answered this:

You can do this:

Foo operator|(Foo a, Foo b)
{
    return Foo(int(a) | int(b));
}

The int casts are there to prevent undesired recursion.

show/hide this revision's text 1

Why not just cast the result back to a Foo?

Foo x = Foo(Foo_First | Foo_Second);