aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/ArrayStore.out
diff options
context:
space:
mode:
authorJonathan Wakely <redi@gcc.gnu.org>2004-11-03 22:22:34 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2004-11-03 22:22:34 +0000
commitcb1d5dbaeba57d6536812536ecbdd87c1bc9d17f (patch)
tree6ff04d12ce87cd54bc813d10f1baaa6a9c502341 /libjava/testsuite/libjava.lang/ArrayStore.out
parent4815ff39cb03cacb493594c12caf565924ae99c5 (diff)
downloadgcc-cb1d5dbaeba57d6536812536ecbdd87c1bc9d17f.zip
gcc-cb1d5dbaeba57d6536812536ecbdd87c1bc9d17f.tar.gz
gcc-cb1d5dbaeba57d6536812536ecbdd87c1bc9d17f.tar.bz2
stl_numeric.h (partial_sum, [...]): Avoid dereferencing two times __first in the prologue.
2004-11-03 Jonathan Wakely <redi@gcc.gnu.org> * include/bits/stl_numeric.h (partial_sum, adjacent_difference): Avoid dereferencing two times __first in the prologue. From-SVN: r90038
Diffstat (limited to 'libjava/testsuite/libjava.lang/ArrayStore.out')
0 files changed, 0 insertions, 0 deletions
ary give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package java.security.cert; /** * A standard interface for the result of building a certificate path. * All implementations of this class must provide a way to get the * certificate path, but may also define additional methods for * returning other result data generated by the certificate path * builder. */ public interface CertPathBuilderResult extends Cloneable { /** * Creates a copy of this builder result. * * @return The copy. */ Object clone(); /** * Get the certificate path that was built. * * @retrn The certificate path. */ CertPath getCertPath(); }