forked from OSchip/llvm-project
[flang] Initialize directories_ directly rather than with setter.
Original-commit: flang-compiler/f18@a9a6fc688b Reviewed-on: https://github.com/flang-compiler/f18/pull/186 Tree-same-pre-rewrite: false
This commit is contained in:
parent
7edb7ec69b
commit
64ed507b36
|
@ -19,6 +19,7 @@
|
|||
#include "../parser/message.h"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
|
||||
namespace Fortran::parser {
|
||||
struct Program;
|
||||
|
@ -28,7 +29,6 @@ namespace Fortran::semantics {
|
|||
|
||||
class Semantics {
|
||||
public:
|
||||
Semantics() { directories_.push_back("."s); }
|
||||
const parser::Messages &messages() const { return messages_; }
|
||||
Semantics &set_searchDirectories(const std::vector<std::string> &);
|
||||
Semantics &set_moduleDirectory(const std::string &);
|
||||
|
@ -38,10 +38,11 @@ public:
|
|||
|
||||
private:
|
||||
Scope globalScope_;
|
||||
std::vector<std::string> directories_;
|
||||
std::vector<std::string> directories_{"."s};
|
||||
std::string moduleDirectory_{"."s};
|
||||
parser::Messages messages_;
|
||||
};
|
||||
|
||||
} // namespace Fortran::semantics
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue