mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-31 14:05:33 +00:00
[2369] Use the more specialized std::ifstream instead of std::fstream
This commit is contained in:
@@ -46,7 +46,7 @@ InputSource::InputSource(const char* filename) :
|
|||||||
name_(filename),
|
name_(filename),
|
||||||
input_(file_stream_)
|
input_(file_stream_)
|
||||||
{
|
{
|
||||||
file_stream_.open(filename, std::fstream::in);
|
file_stream_.open(filename);
|
||||||
if (file_stream_.fail()) {
|
if (file_stream_.fail()) {
|
||||||
isc_throw(OpenError,
|
isc_throw(OpenError,
|
||||||
"Error opening the input source file: " << filename);
|
"Error opening the input source file: " << filename);
|
||||||
|
@@ -135,7 +135,7 @@ private:
|
|||||||
size_t buffer_pos_;
|
size_t buffer_pos_;
|
||||||
|
|
||||||
const std::string name_;
|
const std::string name_;
|
||||||
std::fstream file_stream_;
|
std::ifstream file_stream_;
|
||||||
std::istream& input_;
|
std::istream& input_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user