Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .ci/travis_build_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ $PYTHON2 -m pip install libNeuroML pyNeuroML python-libsbml --upgrade --user
$PYTHON3 -m pip install pip --upgrade --user
$PYTHON3 -m pip install libNeuroML pyNeuroML python-libsbml --upgrade --user

# sympy is only needed for pretty-priting for one test.
$PYTHON3 -m pip install sympy --upgrade --user

NPROC=$(nproc)
MAKE="make -j$NPROC"

Expand Down
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ matrix:
osx_image: xcode11.3

notifications:
email:
recipients:
- [email protected]
- [email protected]
- [email protected]
on_success: change
on_failure: always
email:
recipients:
- [email protected]
- [email protected]
- [email protected]
on_success: change
on_failure: always

addons:
apt:
Expand Down
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ add_executable(moose.bin basecode/main.cpp)


################################### SETUP BUILD ################################

# default include paths.
include_directories( ${CMAKE_CURRENT_SOURCE_DIR} )

Expand Down
3 changes: 1 addition & 2 deletions basecode/FieldElement.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,7 @@ class FieldElement: public Element
*
* Returns 0 if either index is out of range.
*/
char* data( unsigned int rawIndex,
unsigned int fieldIndex = 0 ) const;
char* data( unsigned int rawIndex, unsigned int fieldIndex = 0 ) const;

/**
* virtual
Expand Down
Loading