diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-10-29 16:32:47 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-10-29 16:32:47 +0200 |
commit | 287207841db5df93cf7ff9c71a5f1548deb26b09 (patch) | |
tree | 61d3a8e057ecefb3e19c0c4474542d8dad6bb0e7 /tests/encode_unittests/SConscript | |
parent | 0074deba9a2ff99c877abe1293f72a9ed76f46c1 (diff) |
Remove the NANOPB_INTERNALS functions from public API.
These have been deprecated since nanopb-0.1.6 (some since 0.1.3).
Equivalent functions with better interface are available in the API.
Update issue 91
Status: FixedInGit
Diffstat (limited to 'tests/encode_unittests/SConscript')
-rw-r--r-- | tests/encode_unittests/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/encode_unittests/SConscript b/tests/encode_unittests/SConscript index 6a5ffcff..7509ec03 100644 --- a/tests/encode_unittests/SConscript +++ b/tests/encode_unittests/SConscript @@ -1,5 +1,5 @@ # Build and run the stand-alone unit tests for the nanopb encoder part. Import('env') -p = env.Program(["encode_unittests.c", "#common/unittestproto.pb.c", "#common/pb_encode.o"]) +p = env.Program(["encode_unittests.c", "#common/unittestproto.pb.c"]) env.RunTest(p) |