Skip to content

Commit 28b2f42

Browse files
committed
- attempt to fix SimulationRuntime CPP build.
- fix stdafx.h case (not StdAfx.h) - fix UTF-8 encoding in stdafx.h files (removed some German comments) git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@16800 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent e33fb17 commit 28b2f42

File tree

8 files changed

+10
-18
lines changed

8 files changed

+10
-18
lines changed

SimulationRuntime/cpp/Core/DataExchange/SimData.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "StdAfx.h"
1+
#include "stdafx.h"
22
#include <DataExchange/SimData.h>
33

44

@@ -27,7 +27,7 @@ ISimVar* SimData::Get(string key)
2727
{
2828
Objects_type::const_iterator iter =_sim_vars.find(key);
2929

30-
//Prüfen ob das Simobjekt in Liste ist.
30+
//Pr�fen ob das Simobjekt in Liste ist.
3131
if(iter!=_sim_vars.end())
3232
{
3333
boost::shared_ptr<ISimVar> obj= iter->second;
@@ -73,7 +73,7 @@ void SimData::getOutputResults(string name,ublas::vector<double>& v)
7373
{
7474
OutputResults_type::const_iterator iter =_result_vars.find(name);
7575

76-
//Prüfen ob die Ergebnisse in Liste ist.
76+
//Pr�fen ob die Ergebnisse in Liste ist.
7777
if(iter!=_result_vars.end())
7878
{
7979

SimulationRuntime/cpp/Core/DataExchange/stdafx.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
// stdafx.h : Includedatei für Standardsystem-Includedateien,
2-
// oder projektspezifische Includedateien, die häufig benutzt, aber
3-
// in unregelmäßigen Abständen geändert werden.
1+
// stdafx.h :
42
//
53

64
#pragma once

SimulationRuntime/cpp/Core/SimController/Configuration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "StdAfx.h"
1+
#include "stdafx.h"
22
#include "Configuration.h"
33
#include "LibrariesConfig.h"
44

SimulationRuntime/cpp/Core/SimController/SimController.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "StdAfx.h"
1+
#include "stdafx.h"
22
#include "SimController.h"
33
#include "LibrariesConfig.h"
44
#include "Configuration.h"

SimulationRuntime/cpp/Core/SimulationSettings/Factory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "StdAfx.h"
1+
#include "stdafx.h"
22
#include "Factory.h"
33
#include "GlobalSettings.h"
44

SimulationRuntime/cpp/Core/SimulationSettings/stdafx.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
// stdafx.h : Includedatei für Standardsystem-Includedateien,
2-
// oder projektspezifische Includedateien, die häufig benutzt, aber
3-
// in unregelmäßigen Abständen geändert werden.
1+
// stdafx.h :
42
//
53

64
#pragma once

SimulationRuntime/cpp/SimCoreFactory/OMCFactory/stdafx.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
// stdafx.h : Includedatei für Standardsystem-Includedateien,
2-
// oder projektspezifische Includedateien, die häufig benutzt, aber
3-
// in unregelmäßigen Abständen geändert werden.
1+
// stdafx.h :
42
//
53

64
#pragma once

SimulationRuntime/cpp/Solver/CVode/stdafx.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
// stdafx.h : Includedatei für Standardsystem-Includedateien
2-
// oder häufig verwendete projektspezifische Includedateien,
3-
// die nur in unregelmäßigen Abständen geändert werden.
1+
// stdafx.h :
42
//
53

64
#pragma once

0 commit comments

Comments
 (0)