Changeset 221 in tmcsimulator for branches


Ignore:
Timestamp:
11/04/2017 11:49:25 AM (8 years ago)
Author:
jtorres
Message:

FEPSim: fixed no matching function for call error message. Also, suppressed annoying deprecated conversion from string constant to char warning in ./buildLinuxVM

Location:
branches/FEPSimulator
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/FEPSimulator/FEPSim.cpp

    r219 r221  
    77    this->FEP_REV = FEP_REV; 
    88    this->SOCK_PORT = SOCK_PORT; 
    9      
     9    this->FEPLogFileName = "FEPSimLog.txt";     
    1010    // clear log file 
    1111    FEPLogFile.open(FEPLogFileName, ios::trunc); 
  • branches/FEPSimulator/FEPSim.h

    r217 r221  
    4545 
    4646const int BUFF_SIZE = 1266341; 
    47 const string FEPLogFileName = "FEPSimLog.txt"; 
    4847static ofstream FEPLogFile; 
    4948     
     
    8786    int FEP_REV; 
    8887    int SOCK_PORT; 
     88    char * FEPLogFileName; 
    8989     
    9090    /** 
  • branches/FEPSimulator/buildLinuxVM

    r216 r221  
    11#!/bin/bash 
    22 
    3 g++ *.c *.cpp -o FEPSimulatorExec 
     3g++ -Wno-write-strings *.c *.cpp -o FEPSimulatorExec 
Note: See TracChangeset for help on using the changeset viewer.