Fix build break for Clang builds.
authorAndrew Tulloch <tulloch@fb.com>
Thu, 1 Aug 2013 21:26:12 +0000 (14:26 -0700)
committerSara Golemon <sgolemon@fb.com>
Wed, 28 Aug 2013 21:30:11 +0000 (14:30 -0700)
commitaf705b3203c08442bf6743bf03e4b2fe30eeee9c
tree6e4fc1e0e8a04af0911943ad9b23e0de4af297cf
parent9ada53a918e2e29c124f1571a609cf3ca98e377d
Fix build break for Clang builds.

Summary:
Complains about

```
In file included from crypto/lib/cpp/CryptoException.cpp:1:
In file included from crypto/lib/cpp/CryptoException.h:5:
In file included from ./folly/Conv.h:30:
./folly/Range.h:573:19: error: redefinition of default argument
Comp eq = Comp()) {
^    ~~~~~~
./folly/Range.h:55:26: note: previous definition is here
Comp eq = Comp());
^    ~~~~~~
```

Redefinition of default arguments is not allowed in C++.

Test Plan:
```
fbconfig --clang admarket/adpublisher && fbmake dbg
```

contbuild, etc.

Reviewed By: lucian@fb.com

FB internal diff: D910800
folly/Range.h