Delay*.hh protects

This commit is contained in:
James Cherry 2020-07-03 12:11:23 -07:00
parent 338a82add4
commit 220f280c02
3 changed files with 8 additions and 8 deletions

View File

@ -14,6 +14,9 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// SSTA compilation.
#if (SSTA == 1)
#include "Delay.hh"
#include <cmath> // sqrt
@ -27,9 +30,6 @@
// temporary hack
#include "Sta.hh"
// SSTA compilation.
#if (SSTA == 1)
namespace sta {
inline float

View File

@ -14,6 +14,9 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// SSTA compilation.
#if (SSTA == 2)
#include "Delay.hh"
#include <cmath> // sqrt
@ -25,9 +28,6 @@
#include "Units.hh"
#include "StaState.hh"
// SSTA compilation.
#if (SSTA == 2)
namespace sta {
inline float

View File

@ -14,10 +14,10 @@
// 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 "StaConfig.hh"
#pragma once
#include "StaConfig.hh"
#if (SSTA == 1)
// Delays are Normal PDFs.
#include "DelayNormal1.hh"