我有以下代码:
#include <iostream>
#include <list>
#include <algorithm>
#include <iterator>
template<typename Iterator>
void foo(Iterator begin, Iterator end)
{
typedef typename std::iterator_traits<Iterator>::value_type type;
type smallest = (*std::min_element(begin,end));
std::cout << smallest << std::endl;
}
int main()
{
std::list<int> l;
l.push_back(1);
l.push_back(2);
foo(l.begin(),l.end());
return 0;
}
当我编译如下:
g++ -pedantic -ansi -Wall -Werror -O2 -o test test.cpp
我收到以下错误:
cc1plus: warnings being treated as errors
In function ‘int main()’:
cc1plus: error: dereferencing pointer ‘pretmp.163’ does break strict-aliasing rules
cc1plus: note: initialized from here
这个错误在 O3 中出现,但在 O1 中没有。我已经使用 Comeau 在线编译器 MS VC9.0 和 icc v11 编译了代码,并且在所有情况下代码编译都没有问题。
该代码与std::vector
, std::deque
, std::set
, char*
,int*
迭代器一起工作正常,似乎是 std::list 实现的特定内容。
我希望有人可以对这个特定错误(警告)的含义以及如何解决它提供一些见解。
注意:GCC 版本为:
gcc (Ubuntu 4.4.1-4ubuntu9) 4.4.1
Copyright (C) 2009 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.