Eclipse warning translation?
1
Name:
Anonymous
2009-02-28 11:59
"Access to enclosing method setNode(SLL.SLLNode<E>) from the type SLL<E>.SLLNode<E> is emulated by a synthetic accessor method. Increasing its visibility will improve your performance."
What the fuck? It's a fucking private static inner class. I can private everything inside it.
2
Name:
Anonymous
2009-02-28 12:00
eclipse + oo =>
now you have 3 problems!
3
Name:
Anonymous
2009-02-28 17:48
4
Name:
Anonymous
2009-02-28 18:16
>>3
Now you have
sepples.cpp: In function ‘int main()’:
sepples.cpp:9: error: no matching function for call to ‘std::vector<int, std::allocator<int> >::insert(int)’
/usr/lib/gcc/i486-linux-gnu/4.0.3/../../../../include/c++/4.0.3/bits/vector.tcc:93: note: candidates are: typename std::vector<_Tp, _Alloc>::iterator std::vector<_Tp, _Alloc>::insert(__gnu_cxx::__normal_iterator<typename _Alloc::pointer, std::vector<_Tp, _Alloc> >, const _Tp&) [with _Tp = int, _Alloc = std::allocator<int>]
/usr/lib/gcc/i486-linux-gnu/4.0.3/../../../../include/c++/4.0.3/bits/stl_vector.h:657: note: void std::vector<_Tp, _Alloc>::insert(__gnu_cxx::__normal_iterator<typename _Alloc::pointer, std::vector<_Tp, _Alloc> >, size_t, const _Tp&) [with _Tp = int, _Alloc = std::allocator<int>] problems.
5
Name:
Anonymous
2011-02-04 19:31