mv includes out of namespace
This commit is contained in:
parent
dafe846277
commit
3468993e51
|
|
@ -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) :
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue