comparison libinterp/corefcn/help.cc @ 19907:d575cd1e0da7

Replace std::size_t with bare size_t for conformity to rest of code. * gl2ps-renderer.cc (draw): Replace std::size_t with size_t. * help.cc (size): Replace std::size_t with size_t. * __fltk_uigetfile__.cc (F__fltk_uigetfile__): Replace std::size_t with size_t. * __init_fltk__.cc (fltk_uimenu::find_index_by_name): Replace std::size_t with size_t. * audioread.cc (Faudiowrite): Replace std::size_t with size_t.
author Rik <rik@octave.org>
date Fri, 27 Feb 2015 15:51:12 -0800
parents 19755f4fc851
children 4ff975c58584
comparison
equal deleted inserted replaced
19906:ed5ee3f610db 19907:d575cd1e0da7
96 96
97 typedef std::map<std::string, std::string> map_type; 97 typedef std::map<std::string, std::string> map_type;
98 typedef map_type::value_type pair_type; 98 typedef map_type::value_type pair_type;
99 typedef map_type::const_iterator map_iter; 99 typedef map_type::const_iterator map_iter;
100 100
101 template<typename T, std::size_t z> 101 template<typename T, size_t z>
102 std::size_t 102 size_t
103 size (T const (&)[z]) 103 size (T const (&)[z])
104 { 104 {
105 return z; 105 return z;
106 } 106 }
107 107