mv includes out of namespace

This commit is contained in:
James Cherry 2020-04-05 19:44:41 -07:00
parent dafe846277
commit 3468993e51
4 changed files with 9 additions and 8 deletions

View File

@ -14,6 +14,8 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include "Latches.hh"
#include "Debug.hh"
#include "TimingRole.hh"
#include "TimingArc.hh"
@ -30,8 +32,6 @@
#include "Search.hh"
#include "Crpr.hh"
#include "Latches.hh"
namespace sta {
Latches::Latches(StaState *sta) :

View File

@ -16,12 +16,13 @@
#pragma once
namespace sta {
#include "GraphClass.hh"
#include "SearchClass.hh"
#include "SdcClass.hh"
#include "StaState.hh"
namespace sta {
enum class LatchEnableState { enabled, open, closed };
// Latches class defines latch behavior.

View File

@ -14,6 +14,8 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include "WorstSlack.hh"
#include "Debug.hh"
#include "Report.hh"
#include "Mutex.hh"
@ -22,8 +24,6 @@
#include "Search.hh"
#include "PathAnalysisPt.hh"
#include "WorstSlack.hh"
namespace sta {
using std::min;

View File

@ -16,8 +16,6 @@
#pragma once
namespace sta {
#include <mutex>
#include "MinMax.hh"
@ -25,6 +23,8 @@ namespace sta {
#include "GraphClass.hh"
#include "SearchClass.hh"
namespace sta {
class StaState;
class WorstSlack;
class WnsSlackLess;