Skip to content

Commit

Permalink
Correct a comment in tuple.h that tripped me up.
Browse files Browse the repository at this point in the history
BUG=none

Review URL: https://codereview.chromium.org/1896533003

Cr-Commit-Position: refs/heads/master@{#387812}
  • Loading branch information
rjkroege authored and Commit bot committed Apr 16, 2016
1 parent f054db5 commit b1f8959
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/tuple.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ template <> struct MakeIndexSequenceImpl<13> {
using Type = IndexSequence<0,1,2,3,4,5,6,7,8,9,10,11,12>;
};

#else // defined(WIN) && defined(_PREFAST_)
#else // defined(OS_WIN) && defined(_PREFAST_)

template <size_t... Ns>
struct MakeIndexSequenceImpl<0, Ns...> {
Expand All @@ -105,7 +105,7 @@ template <size_t N, size_t... Ns>
struct MakeIndexSequenceImpl<N, Ns...>
: MakeIndexSequenceImpl<N - 1, N - 1, Ns...> {};

#endif // defined(WIN) && defined(_PREFAST_)
#endif // defined(OS_WIN) && defined(_PREFAST_)

template <size_t N>
using MakeIndexSequence = typename MakeIndexSequenceImpl<N>::Type;
Expand Down

0 comments on commit b1f8959

Please sign in to comment.