diff options
author | Phil Mesnier <mesnierp@ociweb.com> | 2016-03-12 01:18:07 -0600 |
---|---|---|
committer | Phil Mesnier <mesnierp@ociweb.com> | 2016-03-12 01:18:07 -0600 |
commit | 7c7d2672943507e49e1190ccec7d2e8b581a2c6a (patch) | |
tree | 561e1c35e1eb160ca618f9fa347707baa9a95f24 /TAO | |
parent | e1a129d34ff87fcdb7ec030dc3b9f302fc411780 (diff) | |
parent | 28ba46822f5cffe9e289dbc49ec320496c39d962 (diff) | |
download | ATCD-7c7d2672943507e49e1190ccec7d2e8b581a2c6a.tar.gz |
Merge pull request #213 from pmesnier/master
Fix scoreboard warning.
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/tao/Storable_FlatFileStream.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/TAO/tao/Storable_FlatFileStream.cpp b/TAO/tao/Storable_FlatFileStream.cpp index 6206a375477..c3eee6b0423 100644 --- a/TAO/tao/Storable_FlatFileStream.cpp +++ b/TAO/tao/Storable_FlatFileStream.cpp @@ -1,3 +1,4 @@ + // -*- C++ -*- //============================================================================= @@ -718,6 +719,8 @@ TAO::Storable_FlatFileFactory::is_nfs (const ACE_CString& directory) } } ::endmntent (mt); +#else + ACE_UNUSED_ARG (directory); #endif /* ACE_HAS_MNTENT */ return ret; } |