-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reduce compiler warnings/code-analysis diagnostics #461
Commits on Dec 19, 2020
-
* update "nitro" * update coda-oss and fix compiler errors * update coda-oss and nitro with less use of sys:: * unit-test paths are wrong for "externals" * update "nitro" to get SegmentMemorySource overloads * latest from "nitro" * match nitro -> nitf change * make_span() * latest from "coda-oss" * more filesystem from coda-oss * latest from "nitro" * std::endian * latest from "nitro" * latest from "nitro" and "coda-oss"
J. Daniel Smith authoredDec 19, 2020 Configuration menu - View commit details
-
Copy full SHA for f217f23 - Browse repository at this point
Copy the full SHA f217f23View commit details
Commits on Dec 22, 2020
-
reduce use of toString() (#389)
* put common #includes for PCH in a single file * build check_valid_six * use EXIT_* rather than 0/1 * getting rid of std::auto_ptr<> because it's gone in C++17 * build all projects with C++17 * use <filesystem> to remove hard-coded paths * in Visual Studio, run check_valid_six with a pre-defined path * tweak plugin dir * can't have "check_valid_six" as a directory for *ix build * build crop_sicd * turn on /Wall, fix some warnings * C++17 generates more warnings that I don't want to fix right now * removed some compiler warnings from third-party code * comment-out use of C++17's <filesystem> * tweak project settings for consistency * unit-test for createFakeComplexData() * turn on compiler warnings * crank-up warning level * enable "Warnings as errors" * turn on all warnings (many #pragma'd away) * get rid of more warnings * adjust more #pragma's * update "nitro" * update coda-oss and fix compiler errors * update "nitro" * update coda-oss and fix compiler errors * use "externals" from top-level "install" * use int64_t, etc. instead of sys::Int64_T * mem::SharedPtr -> std::shared_ptr * update coda-oss and nitro with less use of sys:: * unit-test paths are wrong for "externals" * update "nitro" to get SegmentMemorySource overloads * use std::unique_ptr<[]> instead of mem::ScopedArray * use int32_t et. al. instead of sys::Int32_T * use std::byte (not quite working yet, but need to move code to a faster machine) * build with std::byte * build with simplified "externals" scheme * latest from "nitro" * match nitro -> nitf change * make_span() * use std::thread::hardware_concurrency() instead of sys::OS().getNumCPUs() * sys::Off_T -> ptrdiff_t * fix compiler errors from previous merge; mostly #include <thread> * Revert "sys::Off_T -> ptrdiff_t" This reverts commit aa22a37. * sys::Off_T -> int64_t; sys::SSize_T -> ptrdiff_t * latest from "coda-oss" * use filesystem::path and std::endian * more filesystem from coda-oss * less use of sys:: * NULL -> nullptr * use .data() rather than &d[0] * mem::BufferView -> std::span * const std::span<>& doesn't make much sense * need make_span() overload for pointer+size * latest from "nitro" * std::endian * coda-oss now gives us std::endian * sys::Filesystem -> std::filesystem * don't need to explicitly call fs::path::string() in most cases * sys::Filesystem -> std::filesystem * fix build errors when using C++17 * simplify access to some ImageSubheader values * newReadControl() returns a std::unique_ptr<> rather than a raw pointer * a singleton is much easier in C++11 * don't need to do manual locking in C++11 * use a template and some macros to dramatically simplify Enums * adjust macros for GCC, provide operators for SWIG * got the map entries wrong * make getIndices() a bit more robust * store a std::unique_ptr<> instead of a raw poniter * throw exceptions in getIndices() rather than assuming * use Enum<T>.toString() where possible rather than duplicating code * remove duplicate code converting from a string to Enum<T> * don't explicilty check for "SIDD" as that's already part of getDataType() * use std::string instead of char[] * reduce use of "delete[]" * less use of "SICD" and "SIDD", use six::DataType instead * simplify Region buffer management * reduce some explicit use of std::shared_ptr<> with std::make_shared and/or auto * more reduction in explicit use of std::shared_ptr * latest from "nitro" * simplify use of six::Region * reduce use of explicit .toString() * further reduction in explicit use of toString() * template specialiaton can't be inline with G++ * simplify cphd enum creation * reduce use of toString() with setAttribute() * latest from "nitro" and "coda-oss" * don't need catch(excep::Exception) ex.toString() as std::exception::what() now does the same thing * really only have two calls to setAttribute(): std::string and size_t * use macros to generate SIDD Enums * add operator<< for Enum<T> to avoid some explicit .toString() calls * add operator==(std::string) overload to redue need for .toString() * add operator<<() to redue need for .toString() * don't implmeent a bunch of six::toString() routines; they sholdn't be called anymore * further reduction in use of toString() * eliminate six::toString() template; just provide a few overloads instead * createSixString() which calls six::toString(t) instead of t.toString() * createSixString() overload with URI parameter * allow different strings (e.g., "1" and "+1") to map to the same value * put "Enum" support code in a separate file * there is now just one NOT_SET_VALUE
J. Daniel Smith authoredDec 22, 2020 Configuration menu - View commit details
-
Copy full SHA for 433e819 - Browse repository at this point
Copy the full SHA 433e819View commit details
Commits on Dec 29, 2020
-
* update "nitro" * update coda-oss and fix compiler errors * update coda-oss and nitro with less use of sys:: * unit-test paths are wrong for "externals" * update "nitro" to get SegmentMemorySource overloads * latest from "nitro" * match nitro -> nitf change * make_span() * latest from "coda-oss" * more filesystem from coda-oss * latest from "nitro" * std::endian * latest from "nitro" * latest from "nitro" and "coda-oss" * latest from coda-oss * lost toString<nullptr>() * latest from coda-oss/main * want "std" augmented in this repo
J. Daniel Smith authoredDec 29, 2020 Configuration menu - View commit details
-
Copy full SHA for 21e2b67 - Browse repository at this point
Copy the full SHA 21e2b67View commit details
Commits on Dec 30, 2020
-
latest from coda-oss and nitro (#391)
* update "nitro" * update coda-oss and fix compiler errors * update coda-oss and nitro with less use of sys:: * unit-test paths are wrong for "externals" * update "nitro" to get SegmentMemorySource overloads * latest from "nitro" * match nitro -> nitf change * make_span() * latest from "coda-oss" * more filesystem from coda-oss * latest from "nitro" * std::endian * latest from "nitro" * latest from "nitro" and "coda-oss" * latest from coda-oss * lost toString<nullptr>() * latest from coda-oss/main * want "std" augmented in this repo * partial update from coda-oss/main * latest from coda-oss/main
J. Daniel Smith authoredDec 30, 2020 Configuration menu - View commit details
-
Copy full SHA for 825a667 - Browse repository at this point
Copy the full SHA 825a667View commit details
Commits on Jan 9, 2021
-
update coda-oss with latest from https://github.com/mdaus/coda-oss
Dan Smith committedJan 9, 2021 Configuration menu - View commit details
-
Copy full SHA for f283be3 - Browse repository at this point
Copy the full SHA f283be3View commit details -
Dan Smith committed
Jan 9, 2021 Configuration menu - View commit details
-
Copy full SHA for ae630e6 - Browse repository at this point
Copy the full SHA ae630e6View commit details -
Dan Smith committed
Jan 9, 2021 Configuration menu - View commit details
-
Copy full SHA for 0b99300 - Browse repository at this point
Copy the full SHA 0b99300View commit details
Commits on Jan 11, 2021
-
Configuration menu - View commit details
-
Copy full SHA for db45e1e - Browse repository at this point
Copy the full SHA db45e1eView commit details -
Dan Smith committed
Jan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for e89da71 - Browse repository at this point
Copy the full SHA e89da71View commit details -
Dan Smith committed
Jan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 3adb502 - Browse repository at this point
Copy the full SHA 3adb502View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89522fe - Browse repository at this point
Copy the full SHA 89522feView commit details -
Dan Smith committed
Jan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for e82f28c - Browse repository at this point
Copy the full SHA e82f28cView commit details -
update "c", "java", "mex", and "python" directories -- but not "c++"
Dan Smith committedJan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 8fe3028 - Browse repository at this point
Copy the full SHA 8fe3028View commit details -
update other nitro top-level files ... everything except modules/c++
Dan Smith committedJan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for b3c1dbd - Browse repository at this point
Copy the full SHA b3c1dbdView commit details -
Dan Smith committed
Jan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for a398eef - Browse repository at this point
Copy the full SHA a398eefView commit details -
several changes from nitro/c++ ... hoping this builds.
Dan Smith committedJan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 7a9b240 - Browse repository at this point
Copy the full SHA 7a9b240View commit details -
Dan Smith committed
Jan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for a688092 - Browse repository at this point
Copy the full SHA a688092View commit details -
more changes from nitro/modules/c++
Dan Smith committedJan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 84db123 - Browse repository at this point
Copy the full SHA 84db123View commit details -
Dan Smith authored and Dan Smith committed
Jan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 7aba3b8 - Browse repository at this point
Copy the full SHA 7aba3b8View commit details -
more changes from nitro/modules/c++
Dan Smith committedJan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for d9a5c2f - Browse repository at this point
Copy the full SHA d9a5c2fView commit details -
paths are wrong when in "externals"
Dan Smith committedJan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 5e5870f - Browse repository at this point
Copy the full SHA 5e5870fView commit details -
Dan Smith committed
Jan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 7b8ca70 - Browse repository at this point
Copy the full SHA 7b8ca70View commit details -
Merge branch 'develop/update_externals' of github.com:ngageoint/six-l…
…ibrary into develop/update_externals
Dan Smith committedJan 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 92d5bb5 - Browse repository at this point
Copy the full SHA 92d5bb5View commit details
Commits on Jan 12, 2021
-
Dan Smith committed
Jan 12, 2021 Configuration menu - View commit details
-
Copy full SHA for e6a58a2 - Browse repository at this point
Copy the full SHA e6a58a2View commit details -
Dan Smith committed
Jan 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 65026c2 - Browse repository at this point
Copy the full SHA 65026c2View commit details -
Dan Smith committed
Jan 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 99a0a01 - Browse repository at this point
Copy the full SHA 99a0a01View commit details -
Dan Smith committed
Jan 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 4e6a752 - Browse repository at this point
Copy the full SHA 4e6a752View commit details -
std::span removed from "nitro"
Dan Smith committedJan 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 1bd0cb3 - Browse repository at this point
Copy the full SHA 1bd0cb3View commit details -
Dan Smith committed
Jan 12, 2021 Configuration menu - View commit details
-
Copy full SHA for fa19905 - Browse repository at this point
Copy the full SHA fa19905View commit details
Commits on Jan 13, 2021
-
Dan Smith committed
Jan 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 120ee00 - Browse repository at this point
Copy the full SHA 120ee00View commit details -
remove "nitro" files not needed in externals/nitro
Dan Smith committedJan 13, 2021 Configuration menu - View commit details
-
Copy full SHA for da30b96 - Browse repository at this point
Copy the full SHA da30b96View commit details -
paths are wrong in "externals"
Dan Smith committedJan 13, 2021 Configuration menu - View commit details
-
Copy full SHA for dd710d5 - Browse repository at this point
Copy the full SHA dd710d5View commit details -
Revert "remove "nitro" files not needed in externals/nitro"
This reverts commit da30b96.
Dan Smith committedJan 13, 2021 Configuration menu - View commit details
-
Copy full SHA for e69391b - Browse repository at this point
Copy the full SHA e69391bView commit details -
Revert "Revert "remove "nitro" files not needed in externals/nitro""
This reverts commit e69391b.
Dan Smith committedJan 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 436986f - Browse repository at this point
Copy the full SHA 436986fView commit details -
slam in externals as merging creates too many conflicts
Dan Smith committedJan 13, 2021 Configuration menu - View commit details
-
Copy full SHA for ebe9550 - Browse repository at this point
Copy the full SHA ebe9550View commit details -
Merge branch 'develop/update_externals' into main
Dan Smith committedJan 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 4e23991 - Browse repository at this point
Copy the full SHA 4e23991View commit details -
merge brought back a deleted #include
Dan Smith committedJan 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 6de2fa0 - Browse repository at this point
Copy the full SHA 6de2fa0View commit details
Commits on Jan 16, 2021
-
Dan Smith committed
Jan 16, 2021 Configuration menu - View commit details
-
Copy full SHA for 1073b39 - Browse repository at this point
Copy the full SHA 1073b39View commit details -
Dan Smith committed
Jan 16, 2021 Configuration menu - View commit details
-
Copy full SHA for 6fca258 - Browse repository at this point
Copy the full SHA 6fca258View commit details -
Dan Smith committed
Jan 16, 2021 Configuration menu - View commit details
-
Copy full SHA for 1083ac1 - Browse repository at this point
Copy the full SHA 1083ac1View commit details -
paths are wrong in "externals"
Dan Smith committedJan 16, 2021 Configuration menu - View commit details
-
Copy full SHA for e21d4fc - Browse repository at this point
Copy the full SHA e21d4fcView commit details -
Dan Smith committed
Jan 16, 2021 Configuration menu - View commit details
-
Copy full SHA for 9e21803 - Browse repository at this point
Copy the full SHA 9e21803View commit details -
Dan Smith authored and Dan Smith committed
Jan 16, 2021 Configuration menu - View commit details
-
Copy full SHA for c10f233 - Browse repository at this point
Copy the full SHA c10f233View commit details
Commits on Jan 19, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedJan 19, 2021 Configuration menu - View commit details
-
Copy full SHA for f897082 - Browse repository at this point
Copy the full SHA f897082View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa0a138 - Browse repository at this point
Copy the full SHA fa0a138View commit details -
latest from coda-oss and nitro
Dan Smith committedJan 19, 2021 Configuration menu - View commit details
-
Copy full SHA for b856b54 - Browse repository at this point
Copy the full SHA b856b54View commit details -
these are the correct files from "master"
Dan Smith committedJan 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 70a3e72 - Browse repository at this point
Copy the full SHA 70a3e72View commit details -
Dan Smith committed
Jan 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 8242847 - Browse repository at this point
Copy the full SHA 8242847View commit details -
Dan Smith committed
Jan 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 0ec8633 - Browse repository at this point
Copy the full SHA 0ec8633View commit details -
Dan Smith committed
Jan 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 460a96b - Browse repository at this point
Copy the full SHA 460a96bView commit details -
Dan Smith committed
Jan 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 671a89a - Browse repository at this point
Copy the full SHA 671a89aView commit details -
remove files that shouldn't have been committed
Dan Smith committedJan 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 0ecff95 - Browse repository at this point
Copy the full SHA 0ecff95View commit details
Commits on Jan 26, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedJan 26, 2021 Configuration menu - View commit details
-
Copy full SHA for f99597a - Browse repository at this point
Copy the full SHA f99597aView commit details
Commits on Jan 27, 2021
-
Dan Smith committed
Jan 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 4b40305 - Browse repository at this point
Copy the full SHA 4b40305View commit details -
Dan Smith committed
Jan 27, 2021 Configuration menu - View commit details
-
Copy full SHA for f204751 - Browse repository at this point
Copy the full SHA f204751View commit details -
adjust to API changes in coda-oss/xml.lite
Dan Smith committedJan 27, 2021 Configuration menu - View commit details
-
Copy full SHA for bc1744e - Browse repository at this point
Copy the full SHA bc1744eView commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedJan 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 9dd7e36 - Browse repository at this point
Copy the full SHA 9dd7e36View commit details -
Dan Smith committed
Jan 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 6a3859f - Browse repository at this point
Copy the full SHA 6a3859fView commit details
Commits on Jan 30, 2021
-
Dan Smith committed
Jan 30, 2021 Configuration menu - View commit details
-
Copy full SHA for f13785c - Browse repository at this point
Copy the full SHA f13785cView commit details -
std::filesystem::path doesn't implicitly convert to std::string
Dan Smith committedJan 30, 2021 Configuration menu - View commit details
-
Copy full SHA for 96918da - Browse repository at this point
Copy the full SHA 96918daView commit details -
more place where an explicit std::filesystem::path::string() call is …
…needed
Dan Smith committedJan 30, 2021 Configuration menu - View commit details
-
Copy full SHA for 6ba97c6 - Browse repository at this point
Copy the full SHA 6ba97c6View commit details
Commits on Feb 1, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedFeb 1, 2021 Configuration menu - View commit details
-
Copy full SHA for 42c63d0 - Browse repository at this point
Copy the full SHA 42c63d0View commit details -
latest from "coda-oss" and "nitro"
Dan Smith committedFeb 1, 2021 Configuration menu - View commit details
-
Copy full SHA for f616a8e - Browse repository at this point
Copy the full SHA f616a8eView commit details
Commits on Feb 2, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedFeb 2, 2021 Configuration menu - View commit details
-
Copy full SHA for 805b4fd - Browse repository at this point
Copy the full SHA 805b4fdView commit details
Commits on Feb 9, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedFeb 9, 2021 Configuration menu - View commit details
-
Copy full SHA for a181f34 - Browse repository at this point
Copy the full SHA a181f34View commit details -
Dan Smith committed
Feb 9, 2021 Configuration menu - View commit details
-
Copy full SHA for ee7b563 - Browse repository at this point
Copy the full SHA ee7b563View commit details -
Dan Smith committed
Feb 9, 2021 Configuration menu - View commit details
-
Copy full SHA for 92ab24a - Browse repository at this point
Copy the full SHA 92ab24aView commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedFeb 9, 2021 Configuration menu - View commit details
-
Copy full SHA for 9ef79c0 - Browse repository at this point
Copy the full SHA 9ef79c0View commit details -
"nitro" changes to build with C90 instead of C99
Dan Smith committedFeb 9, 2021 Configuration menu - View commit details
-
Copy full SHA for 98df1ed - Browse repository at this point
Copy the full SHA 98df1edView commit details -
old C++11 compilers don't like template<template>
Dan Smith committedFeb 9, 2021 Configuration menu - View commit details
-
Copy full SHA for c2a9909 - Browse repository at this point
Copy the full SHA c2a9909View commit details -
Dan Smith committed
Feb 9, 2021 Configuration menu - View commit details
-
Copy full SHA for 00b6e23 - Browse repository at this point
Copy the full SHA 00b6e23View commit details -
std::shared_ptr<> doesn't have [] versions, only std::unique_ptr
Dan Smith committedFeb 9, 2021 Configuration menu - View commit details
-
Copy full SHA for 969cd6f - Browse repository at this point
Copy the full SHA 969cd6fView commit details
Commits on Feb 10, 2021
-
Dan Smith authored and Dan Smith committed
Feb 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 5d113a4 - Browse repository at this point
Copy the full SHA 5d113a4View commit details
Commits on Feb 15, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedFeb 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 67b5666 - Browse repository at this point
Copy the full SHA 67b5666View commit details -
Dan Smith committed
Feb 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 0c8be8e - Browse repository at this point
Copy the full SHA 0c8be8eView commit details -
Update .gitignore from "nitro"
Dan Smith committedFeb 15, 2021 Configuration menu - View commit details
-
Copy full SHA for e846b94 - Browse repository at this point
Copy the full SHA e846b94View commit details -
Merge branch 'develop/update_externals' of github.com:ngageoint/six-l…
…ibrary into develop/update_externals
Dan Smith committedFeb 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 93d6814 - Browse repository at this point
Copy the full SHA 93d6814View commit details
Commits on Feb 23, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedFeb 23, 2021 Configuration menu - View commit details
-
Copy full SHA for 9bc5b4c - Browse repository at this point
Copy the full SHA 9bc5b4cView commit details -
Dan Smith committed
Feb 23, 2021 Configuration menu - View commit details
-
Copy full SHA for f64bd71 - Browse repository at this point
Copy the full SHA f64bd71View commit details -
Dan Smith committed
Feb 23, 2021 Configuration menu - View commit details
-
Copy full SHA for 6dfeb85 - Browse repository at this point
Copy the full SHA 6dfeb85View commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedFeb 23, 2021 Configuration menu - View commit details
-
Copy full SHA for 241b4f5 - Browse repository at this point
Copy the full SHA 241b4f5View commit details
Commits on Mar 2, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 2, 2021 Configuration menu - View commit details
-
Copy full SHA for af2417e - Browse repository at this point
Copy the full SHA af2417eView commit details -
Dan Smith committed
Mar 2, 2021 Configuration menu - View commit details
-
Copy full SHA for 07ba711 - Browse repository at this point
Copy the full SHA 07ba711View commit details -
Dan Smith committed
Mar 2, 2021 Configuration menu - View commit details
-
Copy full SHA for 5dcd930 - Browse repository at this point
Copy the full SHA 5dcd930View commit details
Commits on Mar 6, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 6, 2021 Configuration menu - View commit details
-
Copy full SHA for 9f26eed - Browse repository at this point
Copy the full SHA 9f26eedView commit details -
add a version number to externals/coda-oss
Dan Smith committedMar 6, 2021 Configuration menu - View commit details
-
Copy full SHA for cb99d69 - Browse repository at this point
Copy the full SHA cb99d69View commit details -
add a version number to externals/nitro
Dan Smith committedMar 6, 2021 Configuration menu - View commit details
-
Copy full SHA for a675370 - Browse repository at this point
Copy the full SHA a675370View commit details -
Dan Smith authored and Dan Smith committed
Mar 6, 2021 Configuration menu - View commit details
-
Copy full SHA for 25cd85e - Browse repository at this point
Copy the full SHA 25cd85eView commit details -
Dan Smith authored and Dan Smith committed
Mar 6, 2021 Configuration menu - View commit details
-
Copy full SHA for 2b4e00a - Browse repository at this point
Copy the full SHA 2b4e00aView commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 6, 2021 Configuration menu - View commit details
-
Copy full SHA for f4e67de - Browse repository at this point
Copy the full SHA f4e67deView commit details -
Dan Smith committed
Mar 6, 2021 Configuration menu - View commit details
-
Copy full SHA for abe6a56 - Browse repository at this point
Copy the full SHA abe6a56View commit details
Commits on Mar 8, 2021
-
remove version numbers (for now); we've went a very long time w/o them
Dan Smith committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 5283b31 - Browse repository at this point
Copy the full SHA 5283b31View commit details -
Dan Smith committed
Mar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for b69e63a - Browse repository at this point
Copy the full SHA b69e63aView commit details -
version number is in too many places ...
Dan Smith committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for f84a172 - Browse repository at this point
Copy the full SHA f84a172View commit details -
Dan Smith committed
Mar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 9825b7d - Browse repository at this point
Copy the full SHA 9825b7dView commit details -
Dan Smith committed
Mar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 2d5f38d - Browse repository at this point
Copy the full SHA 2d5f38dView commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 8, 2021 Configuration menu - View commit details
-
Copy full SHA for a0206cf - Browse repository at this point
Copy the full SHA a0206cfView commit details
Commits on Mar 16, 2021
-
Dan Smith committed
Mar 16, 2021 Configuration menu - View commit details
-
Copy full SHA for a22422a - Browse repository at this point
Copy the full SHA a22422aView commit details
Commits on Mar 22, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 22, 2021 Configuration menu - View commit details
-
Copy full SHA for cc369cc - Browse repository at this point
Copy the full SHA cc369ccView commit details -
latest from "master" on coda-oss
Dan Smith committedMar 22, 2021 Configuration menu - View commit details
-
Copy full SHA for 4db1a4b - Browse repository at this point
Copy the full SHA 4db1a4bView commit details -
Dan Smith committed
Mar 22, 2021 Configuration menu - View commit details
-
Copy full SHA for 5aa2efb - Browse repository at this point
Copy the full SHA 5aa2efbView commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 22, 2021 Configuration menu - View commit details
-
Copy full SHA for cdb74ed - Browse repository at this point
Copy the full SHA cdb74edView commit details -
remove CA diagnostics from coda-oss
Dan Smith committedMar 22, 2021 Configuration menu - View commit details
-
Copy full SHA for 77b0b65 - Browse repository at this point
Copy the full SHA 77b0b65View commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 22, 2021 Configuration menu - View commit details
-
Copy full SHA for 77276c1 - Browse repository at this point
Copy the full SHA 77276c1View commit details
Commits on Mar 24, 2021
-
CODA_OSS_AUGMENT_std_namespace got clobbered again
Dan Smith committedMar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for eeba5b8 - Browse repository at this point
Copy the full SHA eeba5b8View commit details -
Dan Smith committed
Mar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for c1f2b32 - Browse repository at this point
Copy the full SHA c1f2b32View commit details -
be sure coda-oss "std" files are copied
Dan Smith committedMar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for fd1485f - Browse repository at this point
Copy the full SHA fd1485fView commit details -
use new coda-oss "std" headers
Dan Smith committedMar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 30afeea - Browse repository at this point
Copy the full SHA 30afeeaView commit details -
Dan Smith committed
Mar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for dfff3e6 - Browse repository at this point
Copy the full SHA dfff3e6View commit details -
updates from coda-oss and nitro
Dan Smith committedMar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for b00fab7 - Browse repository at this point
Copy the full SHA b00fab7View commit details -
Dan Smith committed
Mar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for a9d7356 - Browse repository at this point
Copy the full SHA a9d7356View commit details -
fix coda-oss unittest dependencies
Dan Smith committedMar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for a22f195 - Browse repository at this point
Copy the full SHA a22f195View commit details -
Dan Smith committed
Mar 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 3d28513 - Browse repository at this point
Copy the full SHA 3d28513View commit details
Commits on Mar 27, 2021
-
sys/Filesystem.h -> std/filesystem
Dan Smith committedMar 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 899e615 - Browse repository at this point
Copy the full SHA 899e615View commit details -
Dan Smith committed
Mar 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 1005fb0 - Browse repository at this point
Copy the full SHA 1005fb0View commit details -
account for removed coda-oss overloads
Dan Smith committedMar 27, 2021 Configuration menu - View commit details
-
Copy full SHA for ab1348f - Browse repository at this point
Copy the full SHA ab1348fView commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 27, 2021 Configuration menu - View commit details
-
Copy full SHA for f819681 - Browse repository at this point
Copy the full SHA f819681View commit details -
add back coda_oss;;filesystem::path
Dan Smith committedMar 27, 2021 Configuration menu - View commit details
-
Copy full SHA for f105c98 - Browse repository at this point
Copy the full SHA f105c98View commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 78ec6f6 - Browse repository at this point
Copy the full SHA 78ec6f6View commit details -
forgot to add new "coda_oss" directory
Dan Smith committedMar 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 1dfc034 - Browse repository at this point
Copy the full SHA 1dfc034View commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMar 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 0319e70 - Browse repository at this point
Copy the full SHA 0319e70View commit details
Commits on Apr 3, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedApr 3, 2021 Configuration menu - View commit details
-
Copy full SHA for 7cd31db - Browse repository at this point
Copy the full SHA 7cd31dbView commit details
Commits on Apr 5, 2021
-
latest from "coda-oss" and "nitro"
Dan Smith committedApr 5, 2021 Configuration menu - View commit details
-
Copy full SHA for c773661 - Browse repository at this point
Copy the full SHA c773661View commit details
Commits on Apr 6, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedApr 6, 2021 Configuration menu - View commit details
-
Copy full SHA for 6c8bb00 - Browse repository at this point
Copy the full SHA 6c8bb00View commit details -
tweaks to python wrappers from coda-oss
Dan Smith committedApr 6, 2021 Configuration menu - View commit details
-
Copy full SHA for 89898de - Browse repository at this point
Copy the full SHA 89898deView commit details
Commits on Apr 10, 2021
-
prepare for removing some code-analysis diagnostics
Dan Smith committedApr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 68c6e63 - Browse repository at this point
Copy the full SHA 68c6e63View commit details -
"const" and "constexpr" as directed by code-analsysi
Dan Smith committedApr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 0b85d14 - Browse repository at this point
Copy the full SHA 0b85d14View commit details -
be sure variables are initialized -- per code-analysis
Dan Smith committedApr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for a41ad42 - Browse repository at this point
Copy the full SHA a41ad42View commit details -
Dan Smith committed
Apr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 56d6f25 - Browse repository at this point
Copy the full SHA 56d6f25View commit details -
"const" or "constexpr" per code-analysis
Dan Smith committedApr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 2633e3e - Browse repository at this point
Copy the full SHA 2633e3eView commit details -
get rid of most reinterpret_cast<>s
Dan Smith committedApr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 55d8715 - Browse repository at this point
Copy the full SHA 55d8715View commit details -
Dan Smith committed
Apr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 29dd386 - Browse repository at this point
Copy the full SHA 29dd386View commit details -
XML parsing routines can be "const"
Dan Smith committedApr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 54f707f - Browse repository at this point
Copy the full SHA 54f707fView commit details -
Dan Smith committed
Apr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for abb6673 - Browse repository at this point
Copy the full SHA abb6673View commit details -
turn on a few more code-analysis diagnostics
Dan Smith committedApr 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 6631df0 - Browse repository at this point
Copy the full SHA 6631df0View commit details
Commits on Apr 12, 2021
-
assert() that various pointers aren't NULL
Dan Smith committedApr 12, 2021 Configuration menu - View commit details
-
Copy full SHA for a08cf07 - Browse repository at this point
Copy the full SHA a08cf07View commit details -
make copy/move explicit, usually =delete
Dan Smith committedApr 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 8ed7374 - Browse repository at this point
Copy the full SHA 8ed7374View commit details
Commits on Apr 13, 2021
-
enable more compiler-warnings & code-analysis diagnostics
Dan Smith committedApr 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 4e0fab2 - Browse repository at this point
Copy the full SHA 4e0fab2View commit details -
updates from coda-oss to remove compiler warnings
Dan Smith committedApr 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 582f71a - Browse repository at this point
Copy the full SHA 582f71aView commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 17291a2 - Browse repository at this point
Copy the full SHA 17291a2View commit details -
Xerces generates a bunch of warnings
Dan Smith committedApr 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 524f758 - Browse repository at this point
Copy the full SHA 524f758View commit details -
there are a lot of code-analysis diagnostics from Xerces
Dan Smith committedApr 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 094ec20 - Browse repository at this point
Copy the full SHA 094ec20View commit details -
another update to coda-oss to get rid of code-analysis diagnostics
Dan Smith committedApr 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 37b4a36 - Browse repository at this point
Copy the full SHA 37b4a36View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 13, 2021 Configuration menu - View commit details
-
Copy full SHA for 379e4cf - Browse repository at this point
Copy the full SHA 379e4cfView commit details
Commits on Apr 14, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedApr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for 74491f1 - Browse repository at this point
Copy the full SHA 74491f1View commit details -
Dan Smith committed
Apr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for d30e0ab - Browse repository at this point
Copy the full SHA d30e0abView commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for b98e80b - Browse repository at this point
Copy the full SHA b98e80bView commit details -
enable more compiler warnings and code-analysis diagnostics
Dan Smith committedApr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for 260e798 - Browse repository at this point
Copy the full SHA 260e798View commit details -
coda-oss updates to reduce compiler warnings/code-analysis diagnostics
Dan Smith committedApr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for e70e257 - Browse repository at this point
Copy the full SHA e70e257View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for 30d25fd - Browse repository at this point
Copy the full SHA 30d25fdView commit details -
turn on more code-analysis diagnostics
Dan Smith committedApr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for e846558 - Browse repository at this point
Copy the full SHA e846558View commit details -
latest from coda-oss to reduce compiler warnings
Dan Smith committedApr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for 445cf74 - Browse repository at this point
Copy the full SHA 445cf74View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 14, 2021 Configuration menu - View commit details
-
Copy full SHA for 8d081cc - Browse repository at this point
Copy the full SHA 8d081ccView commit details
Commits on Apr 17, 2021
-
fix more code-analysis diagnistics
Dan Smith committedApr 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 5a86b03 - Browse repository at this point
Copy the full SHA 5a86b03View commit details -
more code-analysis diagnostics fixes from coda-oss
Dan Smith committedApr 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 8e15275 - Browse repository at this point
Copy the full SHA 8e15275View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 992aede - Browse repository at this point
Copy the full SHA 992aedeView commit details -
Dan Smith committed
Apr 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 6f83361 - Browse repository at this point
Copy the full SHA 6f83361View commit details -
remove several more compiler warnings
Dan Smith committedApr 17, 2021 Configuration menu - View commit details
-
Copy full SHA for a1e412b - Browse repository at this point
Copy the full SHA a1e412bView commit details -
Multithreaded DEBUG DLL is the default
Dan Smith committedApr 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 18606f4 - Browse repository at this point
Copy the full SHA 18606f4View commit details -
Dan Smith committed
Apr 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 24e1ee5 - Browse repository at this point
Copy the full SHA 24e1ee5View commit details
Commits on Apr 19, 2021
-
Dan Smith committed
Apr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 09ffddb - Browse repository at this point
Copy the full SHA 09ffddbView commit details -
Dan Smith authored and Dan Smith committed
Apr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for fc46c9f - Browse repository at this point
Copy the full SHA fc46c9fView commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for f2920fb - Browse repository at this point
Copy the full SHA f2920fbView commit details -
use =default for more default constructors
Dan Smith committedApr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 0ed977b - Browse repository at this point
Copy the full SHA 0ed977bView commit details -
Dan Smith committed
Apr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 526e88d - Browse repository at this point
Copy the full SHA 526e88dView commit details -
Dan Smith committed
Apr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 217894e - Browse repository at this point
Copy the full SHA 217894eView commit details -
get rid of size & signed/unsigned warnings
Dan Smith committedApr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 7c93cbc - Browse repository at this point
Copy the full SHA 7c93cbcView commit details -
more =default for default constructors
Dan Smith committedApr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 8f3a4a1 - Browse repository at this point
Copy the full SHA 8f3a4a1View commit details
Commits on Apr 20, 2021
-
use std::make_unique instead of explicit new
Dan Smith committedApr 20, 2021 Configuration menu - View commit details
-
Copy full SHA for 1e8a3ee - Browse repository at this point
Copy the full SHA 1e8a3eeView commit details -
latest from coda-oss and nitro
Dan Smith committedApr 20, 2021 Configuration menu - View commit details
-
Copy full SHA for 0b2b871 - Browse repository at this point
Copy the full SHA 0b2b871View commit details -
Dan Smith committed
Apr 20, 2021 Configuration menu - View commit details
-
Copy full SHA for 733a255 - Browse repository at this point
Copy the full SHA 733a255View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 20, 2021 Configuration menu - View commit details
-
Copy full SHA for 8592266 - Browse repository at this point
Copy the full SHA 8592266View commit details -
assert() that some pointers can't be NULL
Dan Smith committedApr 20, 2021 Configuration menu - View commit details
-
Copy full SHA for 202eb90 - Browse repository at this point
Copy the full SHA 202eb90View commit details
Commits on Apr 26, 2021
-
Dan Smith committed
Apr 26, 2021 Configuration menu - View commit details
-
Copy full SHA for dc070a1 - Browse repository at this point
Copy the full SHA dc070a1View commit details -
Dan Smith committed
Apr 26, 2021 Configuration menu - View commit details
-
Copy full SHA for 5df9163 - Browse repository at this point
Copy the full SHA 5df9163View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedApr 26, 2021 Configuration menu - View commit details
-
Copy full SHA for 3771696 - Browse repository at this point
Copy the full SHA 3771696View commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedApr 26, 2021 Configuration menu - View commit details
-
Copy full SHA for cf80ce3 - Browse repository at this point
Copy the full SHA cf80ce3View commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedApr 26, 2021 Configuration menu - View commit details
-
Copy full SHA for 11b1816 - Browse repository at this point
Copy the full SHA 11b1816View commit details
Commits on May 3, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedMay 3, 2021 Configuration menu - View commit details
-
Copy full SHA for f20557a - Browse repository at this point
Copy the full SHA f20557aView commit details -
latest from "nitro" to support nitf-c++ as a DLL/shared-library
Dan Smith committedMay 3, 2021 Configuration menu - View commit details
-
Copy full SHA for 9faad06 - Browse repository at this point
Copy the full SHA 9faad06View commit details -
build w/o errors when nitf-c++ is a DLL
Dan Smith committedMay 3, 2021 Configuration menu - View commit details
-
Copy full SHA for f273b6d - Browse repository at this point
Copy the full SHA f273b6dView commit details -
explicitly list SegmentMemorySource() overloads
Dan Smith committedMay 3, 2021 Configuration menu - View commit details
-
Copy full SHA for 5ace9f9 - Browse repository at this point
Copy the full SHA 5ace9f9View commit details
Commits on May 4, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedMay 4, 2021 Configuration menu - View commit details
-
Copy full SHA for 8f4b0a0 - Browse repository at this point
Copy the full SHA 8f4b0a0View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedMay 4, 2021 Configuration menu - View commit details
-
Copy full SHA for 8cad4be - Browse repository at this point
Copy the full SHA 8cad4beView commit details -
get rid of more compiler warnings/code-analysis diagnostics
Dan Smith committedMay 4, 2021 Configuration menu - View commit details
-
Copy full SHA for bd84072 - Browse repository at this point
Copy the full SHA bd84072View commit details -
latest from coda-oss to get rid of more compiler warnings/code-analys…
…is diagnostics
Dan Smith committedMay 4, 2021 Configuration menu - View commit details
-
Copy full SHA for 0591d37 - Browse repository at this point
Copy the full SHA 0591d37View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedMay 4, 2021 Configuration menu - View commit details
-
Copy full SHA for 4d51caf - Browse repository at this point
Copy the full SHA 4d51cafView commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedMay 4, 2021 Configuration menu - View commit details
-
Copy full SHA for 83789cf - Browse repository at this point
Copy the full SHA 83789cfView commit details
Commits on May 8, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedMay 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 2bb3a4e - Browse repository at this point
Copy the full SHA 2bb3a4eView commit details -
be sure NITRO validation changes don't break SIX unittests
Dan Smith committedMay 8, 2021 Configuration menu - View commit details
-
Copy full SHA for a4f624b - Browse repository at this point
Copy the full SHA a4f624bView commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedMay 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 0f0795e - Browse repository at this point
Copy the full SHA 0f0795eView commit details -
allow six.ruleset to be used in other projects
Dan Smith committedMay 8, 2021 Configuration menu - View commit details
-
Copy full SHA for f54971b - Browse repository at this point
Copy the full SHA f54971bView commit details -
fix a bunch of compiler warnings
Dan Smith committedMay 8, 2021 Configuration menu - View commit details
-
Copy full SHA for d37a3c3 - Browse repository at this point
Copy the full SHA d37a3c3View commit details -
get rid of the errors that were #pragma'd away in the previous submis…
…sion
Dan Smith committedMay 8, 2021 Configuration menu - View commit details
-
Copy full SHA for 86c01a1 - Browse repository at this point
Copy the full SHA 86c01a1View commit details
Commits on May 10, 2021
-
PlanarCoordinateMesh can be moved constructed (i.e., return value)
Dan Smith committedMay 10, 2021 Configuration menu - View commit details
-
Copy full SHA for e32fd57 - Browse repository at this point
Copy the full SHA e32fd57View commit details -
fix compiler warnings in six.sidd
Dan Smith committedMay 10, 2021 Configuration menu - View commit details
-
Copy full SHA for 66cf2d3 - Browse repository at this point
Copy the full SHA 66cf2d3View commit details -
reduce the use of "static_cast" in client code
Dan Smith committedMay 10, 2021 Configuration menu - View commit details
-
Copy full SHA for f4409e0 - Browse repository at this point
Copy the full SHA f4409e0View commit details
Commits on May 11, 2021
-
Dan Smith committed
May 11, 2021 Configuration menu - View commit details
-
Copy full SHA for ef2d1fe - Browse repository at this point
Copy the full SHA ef2d1feView commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedMay 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 10b2152 - Browse repository at this point
Copy the full SHA 10b2152View commit details -
CODA-OSS eliminates the need for /Zc:__cplusplus
Dan Smith committedMay 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 2781777 - Browse repository at this point
Copy the full SHA 2781777View commit details -
reduce some code-analysis diagnostics from six.sicd
Dan Smith committedMay 11, 2021 Configuration menu - View commit details
-
Copy full SHA for f96ef20 - Browse repository at this point
Copy the full SHA f96ef20View commit details
Commits on May 12, 2021
-
utilities to reduce code duplication
Dan Smith committedMay 12, 2021 Configuration menu - View commit details
-
Copy full SHA for c9e1879 - Browse repository at this point
Copy the full SHA c9e1879View commit details -
fix more code-analysis diagnostics
Dan Smith committedMay 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 03cdf9e - Browse repository at this point
Copy the full SHA 03cdf9eView commit details -
get rid of a bunch of "unreferenced parameter" warnings
Dan Smith committedMay 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 40edc33 - Browse repository at this point
Copy the full SHA 40edc33View commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedMay 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 50e010c - Browse repository at this point
Copy the full SHA 50e010cView commit details -
utility routines to reduce use of static_cast<>
Dan Smith committedMay 12, 2021 Configuration menu - View commit details
-
Copy full SHA for 4b39d98 - Browse repository at this point
Copy the full SHA 4b39d98View commit details -
use template magic to reduce static_cast<>s when calling createInt()
Dan Smith committedMay 12, 2021 Configuration menu - View commit details
-
Copy full SHA for b625897 - Browse repository at this point
Copy the full SHA b625897View commit details
Commits on May 15, 2021
-
more reduction of static_cast<>
Dan Smith committedMay 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 14db9b0 - Browse repository at this point
Copy the full SHA 14db9b0View commit details -
"const XMLElem" -> "const xml::lite::Element*"
Dan Smith committedMay 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 08fbdd4 - Browse repository at this point
Copy the full SHA 08fbdd4View commit details -
Dan Smith committed
May 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 185e603 - Browse repository at this point
Copy the full SHA 185e603View commit details -
use parseOptional*() routines to reduce noisy code
Dan Smith committedMay 15, 2021 Configuration menu - View commit details
-
Copy full SHA for 8a497df - Browse repository at this point
Copy the full SHA 8a497dfView commit details
Commits on May 17, 2021
-
Merge branch 'master' into develop/update_externals
Dan Smith committedMay 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 0314b79 - Browse repository at this point
Copy the full SHA 0314b79View commit details -
latest from "nitro" and "coda-oss"
Dan Smith committedMay 17, 2021 Configuration menu - View commit details
-
Copy full SHA for df166d5 - Browse repository at this point
Copy the full SHA df166d5View commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedMay 17, 2021 Configuration menu - View commit details
-
Copy full SHA for a68f107 - Browse repository at this point
Copy the full SHA a68f107View commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedMay 17, 2021 Configuration menu - View commit details
-
Copy full SHA for 699613b - Browse repository at this point
Copy the full SHA 699613bView commit details
Commits on May 18, 2021
-
simplify code with parseOptional*()
Dan Smith committedMay 18, 2021 Configuration menu - View commit details
-
Copy full SHA for c62fce9 - Browse repository at this point
Copy the full SHA c62fce9View commit details -
Dan Smith committed
May 18, 2021 Configuration menu - View commit details
-
Copy full SHA for 4b54417 - Browse repository at this point
Copy the full SHA 4b54417View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63bbee0 - Browse repository at this point
Copy the full SHA 63bbee0View commit details -
Revert "simplify code with parseOptional*()"
This reverts commit c62fce9.
Dan Smith committedMay 18, 2021 Configuration menu - View commit details
-
Copy full SHA for f1a4b5f - Browse repository at this point
Copy the full SHA f1a4b5fView commit details -
Revert "use parseOptional*() routines to reduce noisy code"
This reverts commit 8a497df.
Dan Smith committedMay 18, 2021 Configuration menu - View commit details
-
Copy full SHA for c6d2313 - Browse repository at this point
Copy the full SHA c6d2313View commit details -
Dan Smith committed
May 18, 2021 Configuration menu - View commit details
-
Copy full SHA for a606310 - Browse repository at this point
Copy the full SHA a606310View commit details -
Revert "Revert "use parseOptional*() routines to reduce noisy code""
This reverts commit c6d2313.
Dan Smith committedMay 18, 2021 Configuration menu - View commit details
-
Copy full SHA for b003243 - Browse repository at this point
Copy the full SHA b003243View commit details -
Dan Smith committed
May 18, 2021 Configuration menu - View commit details
-
Copy full SHA for ec93071 - Browse repository at this point
Copy the full SHA ec93071View commit details -
fix /W4 warnings in six.convert
Dan Smith committedMay 18, 2021 Configuration menu - View commit details
-
Copy full SHA for d9715da - Browse repository at this point
Copy the full SHA d9715daView commit details
Commits on May 19, 2021
-
fix code-analysis diagnostics from six.sicd
Dan Smith committedMay 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 023a7d8 - Browse repository at this point
Copy the full SHA 023a7d8View commit details -
remove a bunch of code-analysis diagnostics
Dan Smith committedMay 19, 2021 Configuration menu - View commit details
-
Copy full SHA for ae61619 - Browse repository at this point
Copy the full SHA ae61619View commit details -
removed more code-analysis diagnostics
Dan Smith committedMay 19, 2021 Configuration menu - View commit details
-
Copy full SHA for e0d60dd - Browse repository at this point
Copy the full SHA e0d60ddView commit details -
Dan Smith committed
May 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 1531609 - Browse repository at this point
Copy the full SHA 1531609View commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMay 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 6a294c9 - Browse repository at this point
Copy the full SHA 6a294c9View commit details -
reduce use of .c_str() in "nitro"
Dan Smith committedMay 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 433aa81 - Browse repository at this point
Copy the full SHA 433aa81View commit details -
write() takes a std::string parameter
Dan Smith committedMay 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 8659a64 - Browse repository at this point
Copy the full SHA 8659a64View commit details -
simplify calling XMLControlRegistry::addCreator()
Dan Smith committedMay 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 13d1a05 - Browse repository at this point
Copy the full SHA 13d1a05View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedMay 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 908b4c0 - Browse repository at this point
Copy the full SHA 908b4c0View commit details
Commits on May 24, 2021
-
reduce code-analysis diagnostics
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 3dc8fae - Browse repository at this point
Copy the full SHA 3dc8faeView commit details -
Dan Smith committed
May 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 45e4bfc - Browse repository at this point
Copy the full SHA 45e4bfcView commit details -
use range for() to reduce use of .size()
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for fa7bb1b - Browse repository at this point
Copy the full SHA fa7bb1bView commit details -
Dan Smith committed
May 24, 2021 Configuration menu - View commit details
-
Copy full SHA for ad08644 - Browse repository at this point
Copy the full SHA ad08644View commit details -
changes from coda-oss to reduce code-analysis diagnostics
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for dfb69ca - Browse repository at this point
Copy the full SHA dfb69caView commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 1ac2e8f - Browse repository at this point
Copy the full SHA 1ac2e8fView commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for cc2d054 - Browse repository at this point
Copy the full SHA cc2d054View commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 881cd25 - Browse repository at this point
Copy the full SHA 881cd25View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for eeb3163 - Browse repository at this point
Copy the full SHA eeb3163View commit details -
Merge branch 'master' into develop/update_externals
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 9c99881 - Browse repository at this point
Copy the full SHA 9c99881View commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for f5e4a76 - Browse repository at this point
Copy the full SHA f5e4a76View commit details
Commits on May 26, 2021
-
Dan Smith committed
May 26, 2021 Configuration menu - View commit details
-
Copy full SHA for ad60215 - Browse repository at this point
Copy the full SHA ad60215View commit details -
Dan Smith committed
May 26, 2021 Configuration menu - View commit details
-
Copy full SHA for 4b89b4f - Browse repository at this point
Copy the full SHA 4b89b4fView commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedMay 26, 2021 Configuration menu - View commit details
-
Copy full SHA for 659376a - Browse repository at this point
Copy the full SHA 659376aView commit details
Commits on May 27, 2021
-
latest from nitro and coda-oss
Dan Smith committedMay 27, 2021 Configuration menu - View commit details
-
Copy full SHA for 5a8c6a5 - Browse repository at this point
Copy the full SHA 5a8c6a5View commit details -
Merge branch 'develop/update_externals' into develop/fix-compiler-war…
…nings
Dan Smith committedMay 27, 2021 Configuration menu - View commit details
-
Copy full SHA for c06f9cf - Browse repository at this point
Copy the full SHA c06f9cfView commit details -
Merge branch 'master' into develop/fix-compiler-warnings
Dan Smith committedMay 27, 2021 Configuration menu - View commit details
-
Copy full SHA for e1975b3 - Browse repository at this point
Copy the full SHA e1975b3View commit details