I spent some time removing all the uninfluent code and here is my problem.
--- File.h ---
#include <fstream>
#include <string>
template <typename Element>
class DataOutput : public std::basic_ofstream<Element>
{
public:
DataOutput(const std::string &strPath, bool bAppend, bool bBinary)
: std::basic_ofstream<Element>(
strPath.c_str(),
(bAppend ? ios_base::app : (ios_base::out | ios_base::trunc)) |
(bBinary ? ios_base::binary : 0))
{
if (is_open())
clear();
}
~DataOutput()
{
if (is_open())
close();
}
};
class File
{
public:
File(const std::string &strPath);
DataOutput<char> *CreateOutput(bool bAppend, bool bBinary);
private:
std::string m_strPath;
};
--- File.cpp ---
#include <File.h>
File::File(const std::string &strPath)
: m_strPath(strPath)
{
}
DataOutput<char> *File::CreateOutput(bool bAppend, bool bBinary)
{
return new DataOutput<char>(m_strPath, bAppend, bBinary);
}
--- main.cpp ---
#include <File.h>
void main()
{
File file("test.txt");
DataOutput<char> *output(file.CreateOutput(false, false));
*output << "test"; // Calls wrong overload
*output << "test"; // Calls right overload!!!
output->flush();
delete output;
}
And this is the output file after building with cl and options /D "WIN32" /D "_UNICODE" /D "UNICODE" and running
--- test.txt ---
00414114test
Basically what happens is that the first operator<< call in main is bound to the member method
basic_ostream<char>& basic_ostream<char>::operator<<(
const void *)
whereas the second one is (correctly) bound to
basic_ostream<char>& __cdecl operator<<(
basic_ostream<char>&,
const char *)
thus giving a different output.
This doesn't happen if i do any of the following:
- Inline
File::CreateOutput - Change
DataOutputwith a non-template one withElement=char - Add
*output;before the firstoperator<<call
Am i correct in considering this an undesired compiler behavior?
Is there any explanation for this?
Oh, and i'm using VC7 at the moment to test this simplified code but i have tried the original code in VC9 and VC8 and the same thing was happening.
Any help or even a clue is appreciated