comparison libinterp/corefcn/pr-output.cc @ 23534:b6498c088fca

maint: Don't write '> >' for declaration of templates that use templates. C++11 parser allows more readable "template1<template2<TYPENAME>>" syntax rather than "template1<template2<TYPENAME> >". * cellfun.cc, data.cc, oct-stream.cc, octave-link.h, pr-output.cc, sqrtm.cc, symtab.cc, symtab.h, tril.cc, ov-cell.h, ov-classdef.cc, ov-classdef.h, ov-intx.h, ov.cc, bp-table.h, jit-typeinfo.h, jit-util.h, pt-jit.h, CColVector.cc, CMatrix.cc, CNDArray.cc, CRowVector.cc, MatrixType.cc, Sparse.cc, fCColVector.cc, fCMatrix.cc, fCNDArray.cc, fCRowVector.cc, idx-vector.h, lo-traits.h: Replace '> >' with '>>' for double templates.
author Rik <rik@octave.org>
date Sat, 27 May 2017 09:59:32 -0700
parents 21baad6b35c4
children 7049da1648c0
comparison
equal deleted inserted replaced
23533:8edbc923a7dc 23534:b6498c088fca
3102 pr_plus_format (os, val); 3102 pr_plus_format (os, val);
3103 } 3103 }
3104 else 3104 else
3105 { 3105 {
3106 if (free_format) 3106 if (free_format)
3107 os << typename octave_print_conv<octave_int<T> >::print_conv_type (val); 3107 os << typename octave_print_conv<octave_int<T>>::print_conv_type (val);
3108 else 3108 else
3109 pr_int (os, val); 3109 pr_int (os, val);
3110 } 3110 }
3111 } 3111 }
3112 3112