Changeset 79992

Timestamp:
Aug 13, 2012, 12:34:51 AM (10 years ago)
Author:
cppljevans
Message:

WHAT:

Replace variadic templates, such as:

template
< typename... Indices

index_t

offset_at_indices

( Indices...const& a_indices
)const

to:

template
< typename Indices

index_t

offset_at_indices

( Indices const& a_indices
)const

where Indices is some type of stl container type with
begin/end member functions.

WHY:

Avoid annoying warning messages, such as:

warning: narrowing conversion of 'a_size#0' from 'int' to 'unsigned int'

from g++ compiler.

(No files)

Note: See TracChangeset for help on using the changeset viewer.