- 论坛徽章:
- 7
|
我在aix上用xlC编译soci(一个c++方式访问数据库的库。http://soci.sourceforge.net/)时,如果我用const char *来实例化use_type,会报重复声明。
但是我在linux上就没有问题。
请问在aix上如何修改才行呢?
谢谢!!
具体代码如下:- template <typename T>
- class use_type : public standard_use_type
- {
- public:
- use_type(T & t, std::string const & name = std::string())
- : standard_use_type(&t,
- static_cast<exchange_type>(exchange_traits<T>::x_type),
- false, name) {}
- use_type(T const & t, std::string const & name = std::string())
- : standard_use_type(const_cast<T *>(&t),
- static_cast<exchange_type>(exchange_traits<T>::x_type),
- true, name) {}
- use_type(T & t, indicator & ind,
- std::string const & name = std::string())
- : standard_use_type(&t,
- static_cast<exchange_type>(exchange_traits<T>::x_type),
- ind, false, name) {}
- use_type(T const & t, indicator & ind,
- std::string const & name = std::string())
- : standard_use_type(const_cast<T *>(&t),
- static_cast<exchange_type>(exchange_traits<T>::x_type),
- ind, false, name) {}
- };
复制代码 |
|