Skip to content

Commit

Permalink
try excluding xtd.hpp from the dummy library to see if it will fix so…
Browse files Browse the repository at this point in the history
…nar duplicate file scan error
  • Loading branch information
djmott committed Jul 2, 2016
1 parent b6e7c83 commit e679f49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/dummy_library.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
* @copyright David Mott (c) 2016. Distributed under the Boost Software License Version 1.0. See LICENSE.md or http://boost.org/LICENSE_1_0.txt for details.
*/

#include <xtd.hpp>
//#include <xtd.hpp>

extern "C" {
EXPORT int Add(int x, int y){ return x + y; }
EXPORT const char *Echo(const char *src){ return src; }
int Add(int x, int y){ return x + y; }
const char *Echo(const char *src){ return src; }
}

0 comments on commit e679f49

Please sign in to comment.