Fix things

This commit is contained in:
Thomas Forgione 2019-09-25 18:24:32 +02:00
parent 77e737dfa2
commit a500d1e3cc
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
3 changed files with 10 additions and 14 deletions

View File

@ -1,10 +1,8 @@
fn func() {
let mut vec = vec![1, 2, 3];
let iter = vec.iter();
loop {
let mut vec = vec![1, 2, 3];
let iter = vec.iter();
loop {
match iter.next() {
Some(x) => vec.push(x),
None => break,
}
}
}

View File

@ -1,6 +1,4 @@
fn func() {
let mut vec = vec![1, 2, 3];
for value in &vec {
let mut vec = vec![1, 2, 3];
for value in &vec {
vec.push(value);
}
}

View File

@ -33,7 +33,7 @@ Consider the piece of C++ code in Listings~\ref{d3i:undefined-behaviour-cpp} and
\begin{figure}[ht]
\centering
\begin{minipage}[c]{0.75\textwidth}
\begin{minipage}[c]{0.85\textwidth}
\lstinputlisting[
language=c++,
label={d3i:undefined-behaviour-cpp},