Changeset 382 for trunk/nv/stl/traits/function.hh
- Timestamp:
- 06/01/15 20:39:35 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nv/stl/traits/function.hh
r377 r382 35 35 typedef R return_type; 36 36 typedef void class_type; 37 static const int arg_count = 0;37 static constexpr int arg_count = 0; 38 38 }; 39 39 … … 44 44 typedef R return_type; 45 45 typedef void class_type; 46 static const int arg_count = sizeof...( Args );46 static constexpr int arg_count = sizeof...( Args ); 47 47 }; 48 48 … … 53 53 typedef R return_type; 54 54 typedef C class_type; 55 static const int arg_count = 0;55 static constexpr int arg_count = 0; 56 56 }; 57 57 … … 62 62 typedef R return_type; 63 63 typedef C class_type; 64 static const int arg_count = sizeof...( Args );64 static constexpr int arg_count = sizeof...( Args ); 65 65 }; 66 66
Note: See TracChangeset
for help on using the changeset viewer.