Skip to content

Commit a1c8136

Browse files
committed
Fix compile issue for Windows.
1 parent c2f4342 commit a1c8136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LlmConfig.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ bool LlmConfig::saveToFile( const LlmConfig &config, const std::string &filename
143143
// Write to file
144144
#ifdef _WIN32
145145
const std::wstring woutcsv = SpecUtils::convert_from_utf8_to_utf16(filename);
146-
std::ofstream output( woutcsv.c_str(), ios::binary | ios::out );
146+
std::ofstream file( woutcsv.c_str(), ios::binary | ios::out );
147147
#else
148148
std::ofstream file( filename.c_str(), ios::binary | ios::out);
149149
#endif

0 commit comments

Comments
 (0)