Skip to content
Snippets Groups Projects
Commit f0cef962 authored by Christian Engwer's avatar Christian Engwer
Browse files

avoid unused variable warnings

[[Imported from SVN: r5227]]
parent f939324f
No related branches found
No related tags found
No related merge requests found
......@@ -397,10 +397,12 @@ int main()
double& d = lbegin.dereference();
d= 2.0;
d=2.0;
double& d1 = lbegin.dereference();
d1=3.0;
lbegin.dereference()=5.0;
lbegin.operator*()=5.0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment