Skip to content
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

Merged
merged 345 commits into from
May 27, 2021
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Dec 19, 2020

  1. update externals (#388)

    * 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 authored Dec 19, 2020
    Configuration menu
    Copy the full SHA
    f217f23 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2020

  1. 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 authored Dec 22, 2020
    Configuration menu
    Copy the full SHA
    433e819 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2020

  1. latest from coda-oss (#390)

    * 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 authored Dec 29, 2020
    Configuration menu
    Copy the full SHA
    21e2b67 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2020

  1. 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 authored Dec 30, 2020
    Configuration menu
    Copy the full SHA
    825a667 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2021

  1. Configuration menu
    Copy the full SHA
    f283be3 View commit details
    Browse the repository at this point in the history
  2. update externals/nitro/docs

    Dan Smith committed Jan 9, 2021
    Configuration menu
    Copy the full SHA
    ae630e6 View commit details
    Browse the repository at this point in the history
  3. latest from "nitro"

    Dan Smith committed Jan 9, 2021
    Configuration menu
    Copy the full SHA
    0b99300 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2021

  1. Revert "latest from "nitro""

    This reverts commit 0b99300.
    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    db45e1e View commit details
    Browse the repository at this point in the history
  2. latest from nitro/master

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    e89da71 View commit details
    Browse the repository at this point in the history
  3. ignore build/ directory

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    3adb502 View commit details
    Browse the repository at this point in the history
  4. Revert "latest from nitro/master"

    This reverts commit e89da71.
    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    89522fe View commit details
    Browse the repository at this point in the history
  5. update externals/nitro/docs

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    e82f28c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8fe3028 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b3c1dbd View commit details
    Browse the repository at this point in the history
  8. VCXPROJ files from nitro

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    a398eef View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    7a9b240 View commit details
    Browse the repository at this point in the history
  10. fix build error on Linux

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    a688092 View commit details
    Browse the repository at this point in the history
  11. more changes from nitro/modules/c++

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    84db123 View commit details
    Browse the repository at this point in the history
  12. fix IOStreamWriter ctor

    Dan Smith authored and Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    7aba3b8 View commit details
    Browse the repository at this point in the history
  13. more changes from nitro/modules/c++

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    d9a5c2f View commit details
    Browse the repository at this point in the history
  14. paths are wrong when in "externals"

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    5e5870f View commit details
    Browse the repository at this point in the history
  15. remove externals/nitro/docs

    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    7b8ca70 View commit details
    Browse the repository at this point in the history
  16. Merge branch 'develop/update_externals' of github.com:ngageoint/six-l…

    …ibrary into develop/update_externals
    Dan Smith committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    92d5bb5 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2021

  1. slam in "main"

    Dan Smith committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    e6a58a2 View commit details
    Browse the repository at this point in the history
  2. latest from coda-oss/main

    Dan Smith committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    65026c2 View commit details
    Browse the repository at this point in the history
  3. adjust coda-oss for our usage

    Dan Smith committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    99a0a01 View commit details
    Browse the repository at this point in the history
  4. latest from nitro/main

    Dan Smith committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    4e6a752 View commit details
    Browse the repository at this point in the history
  5. std::span removed from "nitro"

    Dan Smith committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    1bd0cb3 View commit details
    Browse the repository at this point in the history
  6. need to redo C++17

    Dan Smith committed Jan 12, 2021
    Configuration menu
    Copy the full SHA
    fa19905 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2021

  1. fix missing #include file

    Dan Smith committed Jan 13, 2021
    Configuration menu
    Copy the full SHA
    120ee00 View commit details
    Browse the repository at this point in the history
  2. remove "nitro" files not needed in externals/nitro

    Dan Smith committed Jan 13, 2021
    Configuration menu
    Copy the full SHA
    da30b96 View commit details
    Browse the repository at this point in the history
  3. paths are wrong in "externals"

    Dan Smith committed Jan 13, 2021
    Configuration menu
    Copy the full SHA
    dd710d5 View commit details
    Browse the repository at this point in the history
  4. Revert "remove "nitro" files not needed in externals/nitro"

    This reverts commit da30b96.
    Dan Smith committed Jan 13, 2021
    Configuration menu
    Copy the full SHA
    e69391b View commit details
    Browse the repository at this point in the history
  5. Revert "Revert "remove "nitro" files not needed in externals/nitro""

    This reverts commit e69391b.
    Dan Smith committed Jan 13, 2021
    Configuration menu
    Copy the full SHA
    436986f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ebe9550 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'develop/update_externals' into main

    Dan Smith committed Jan 13, 2021
    Configuration menu
    Copy the full SHA
    4e23991 View commit details
    Browse the repository at this point in the history
  8. merge brought back a deleted #include

    Dan Smith committed Jan 13, 2021
    Configuration menu
    Copy the full SHA
    6de2fa0 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2021

  1. add back "java" and "mex"

    Dan Smith committed Jan 16, 2021
    Configuration menu
    Copy the full SHA
    1073b39 View commit details
    Browse the repository at this point in the history
  2. lates from coda-oss/main

    Dan Smith committed Jan 16, 2021
    Configuration menu
    Copy the full SHA
    6fca258 View commit details
    Browse the repository at this point in the history
  3. latest from "nitro"

    Dan Smith committed Jan 16, 2021
    Configuration menu
    Copy the full SHA
    1083ac1 View commit details
    Browse the repository at this point in the history
  4. paths are wrong in "externals"

    Dan Smith committed Jan 16, 2021
    Configuration menu
    Copy the full SHA
    e21d4fc View commit details
    Browse the repository at this point in the history
  5. need to redo C++17 support

    Dan Smith committed Jan 16, 2021
    Configuration menu
    Copy the full SHA
    9e21803 View commit details
    Browse the repository at this point in the history
  6. std::span -> gsl::span

    Dan Smith authored and Dan Smith committed Jan 16, 2021
    Configuration menu
    Copy the full SHA
    c10f233 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    f897082 View commit details
    Browse the repository at this point in the history
  2. Revert "std::span -> gsl::span"

    This reverts commit c10f233.
    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    fa0a138 View commit details
    Browse the repository at this point in the history
  3. latest from coda-oss and nitro

    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    b856b54 View commit details
    Browse the repository at this point in the history
  4. these are the correct files from "master"

    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    70a3e72 View commit details
    Browse the repository at this point in the history
  5. gsl::span -> std::span

    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    8242847 View commit details
    Browse the repository at this point in the history
  6. get #includes right for PCH

    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    0ec8633 View commit details
    Browse the repository at this point in the history
  7. didn't want this change

    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    460a96b View commit details
    Browse the repository at this point in the history
  8. trigger build on GitHub

    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    671a89a View commit details
    Browse the repository at this point in the history
  9. remove files that shouldn't have been committed

    Dan Smith committed Jan 19, 2021
    Configuration menu
    Copy the full SHA
    0ecff95 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Jan 26, 2021
    Configuration menu
    Copy the full SHA
    f99597a View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2021

  1. latest from coda-oss:master

    Dan Smith committed Jan 27, 2021
    Configuration menu
    Copy the full SHA
    4b40305 View commit details
    Browse the repository at this point in the history
  2. latest from nitro::master

    Dan Smith committed Jan 27, 2021
    Configuration menu
    Copy the full SHA
    f204751 View commit details
    Browse the repository at this point in the history
  3. adjust to API changes in coda-oss/xml.lite

    Dan Smith committed Jan 27, 2021
    Configuration menu
    Copy the full SHA
    bc1744e View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into develop/update_externals

    Dan Smith committed Jan 27, 2021
    Configuration menu
    Copy the full SHA
    9dd7e36 View commit details
    Browse the repository at this point in the history
  5. latest from coda-oss

    Dan Smith committed Jan 27, 2021
    Configuration menu
    Copy the full SHA
    6a3859f View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2021

  1. latest from coda-oss

    Dan Smith committed Jan 30, 2021
    Configuration menu
    Copy the full SHA
    f13785c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    96918da View commit details
    Browse the repository at this point in the history
  3. more place where an explicit std::filesystem::path::string() call is …

    …needed
    Dan Smith committed Jan 30, 2021
    Configuration menu
    Copy the full SHA
    6ba97c6 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    42c63d0 View commit details
    Browse the repository at this point in the history
  2. latest from "coda-oss" and "nitro"

    Dan Smith committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    f616a8e View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Feb 2, 2021
    Configuration menu
    Copy the full SHA
    805b4fd View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    a181f34 View commit details
    Browse the repository at this point in the history
  2. latest from coda-oss

    Dan Smith committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    ee7b563 View commit details
    Browse the repository at this point in the history
  3. one more change from coda-oss

    Dan Smith committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    92ab24a View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into develop/update_externals

    Dan Smith committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    9ef79c0 View commit details
    Browse the repository at this point in the history
  5. "nitro" changes to build with C90 instead of C99

    Dan Smith committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    98df1ed View commit details
    Browse the repository at this point in the history
  6. old C++11 compilers don't like template<template>

    Dan Smith committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    c2a9909 View commit details
    Browse the repository at this point in the history
  7. new TREs from "nitro"

    Dan Smith committed Feb 9, 2021
    Configuration menu
    Copy the full SHA
    00b6e23 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    969cd6f View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2021

  1. build with older compilers

    Dan Smith authored and Dan Smith committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    5d113a4 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Feb 15, 2021
    Configuration menu
    Copy the full SHA
    67b5666 View commit details
    Browse the repository at this point in the history
  2. latest coda-oss changes

    Dan Smith committed Feb 15, 2021
    Configuration menu
    Copy the full SHA
    0c8be8e View commit details
    Browse the repository at this point in the history
  3. Update .gitignore from "nitro"

    Dan Smith committed Feb 15, 2021
    Configuration menu
    Copy the full SHA
    e846b94 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'develop/update_externals' of github.com:ngageoint/six-l…

    …ibrary into develop/update_externals
    Dan Smith committed Feb 15, 2021
    Configuration menu
    Copy the full SHA
    93d6814 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Feb 23, 2021
    Configuration menu
    Copy the full SHA
    9bc5b4c View commit details
    Browse the repository at this point in the history
  2. SWIG doesn't like "final"

    Dan Smith committed Feb 23, 2021
    Configuration menu
    Copy the full SHA
    f64bd71 View commit details
    Browse the repository at this point in the history
  3. SWIG doesn't like "final"

    Dan Smith committed Feb 23, 2021
    Configuration menu
    Copy the full SHA
    6dfeb85 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into develop/update_externals

    Dan Smith committed Feb 23, 2021
    Configuration menu
    Copy the full SHA
    241b4f5 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 2, 2021
    Configuration menu
    Copy the full SHA
    af2417e View commit details
    Browse the repository at this point in the history
  2. latest from coda_oss

    Dan Smith committed Mar 2, 2021
    Configuration menu
    Copy the full SHA
    07ba711 View commit details
    Browse the repository at this point in the history
  3. latest from "nitro"

    Dan Smith committed Mar 2, 2021
    Configuration menu
    Copy the full SHA
    5dcd930 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    9f26eed View commit details
    Browse the repository at this point in the history
  2. add a version number to externals/coda-oss

    Dan Smith committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    cb99d69 View commit details
    Browse the repository at this point in the history
  3. add a version number to externals/nitro

    Dan Smith committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    a675370 View commit details
    Browse the repository at this point in the history
  4. restore "build" and "cmake"

    Dan Smith authored and Dan Smith committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    25cd85e View commit details
    Browse the repository at this point in the history
  5. Gsl_.h got lost ... ?

    Dan Smith authored and Dan Smith committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    2b4e00a View commit details
    Browse the repository at this point in the history
  6. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    f4e67de View commit details
    Browse the repository at this point in the history
  7. update CMS to 3.0.3.3 (#433)

    Dan Smith committed Mar 6, 2021
    Configuration menu
    Copy the full SHA
    abe6a56 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2021

  1. Configuration menu
    Copy the full SHA
    5283b31 View commit details
    Browse the repository at this point in the history
  2. finish rename

    Dan Smith committed Mar 8, 2021
    Configuration menu
    Copy the full SHA
    b69e63a View commit details
    Browse the repository at this point in the history
  3. version number is in too many places ...

    Dan Smith committed Mar 8, 2021
    Configuration menu
    Copy the full SHA
    f84a172 View commit details
    Browse the repository at this point in the history
  4. missing .cmake files

    Dan Smith committed Mar 8, 2021
    Configuration menu
    Copy the full SHA
    9825b7d View commit details
    Browse the repository at this point in the history
  5. missing "build" files

    Dan Smith committed Mar 8, 2021
    Configuration menu
    Copy the full SHA
    2d5f38d View commit details
    Browse the repository at this point in the history
  6. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 8, 2021
    Configuration menu
    Copy the full SHA
    a0206cf View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2021

  1. latest from coda-oss

    Dan Smith committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    a22422a View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 22, 2021
    Configuration menu
    Copy the full SHA
    cc369cc View commit details
    Browse the repository at this point in the history
  2. latest from "master" on coda-oss

    Dan Smith committed Mar 22, 2021
    Configuration menu
    Copy the full SHA
    4db1a4b View commit details
    Browse the repository at this point in the history
  3. latest from "master" at nitro

    Dan Smith committed Mar 22, 2021
    Configuration menu
    Copy the full SHA
    5aa2efb View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 22, 2021
    Configuration menu
    Copy the full SHA
    cdb74ed View commit details
    Browse the repository at this point in the history
  5. remove CA diagnostics from coda-oss

    Dan Smith committed Mar 22, 2021
    Configuration menu
    Copy the full SHA
    77b0b65 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 22, 2021
    Configuration menu
    Copy the full SHA
    77276c1 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2021

  1. CODA_OSS_AUGMENT_std_namespace got clobbered again

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    eeba5b8 View commit details
    Browse the repository at this point in the history
  2. update coda-oss and nitro

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    c1f2b32 View commit details
    Browse the repository at this point in the history
  3. be sure coda-oss "std" files are copied

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    fd1485f View commit details
    Browse the repository at this point in the history
  4. use new coda-oss "std" headers

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    30afeea View commit details
    Browse the repository at this point in the history
  5. more coda-oss changes

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    dfff3e6 View commit details
    Browse the repository at this point in the history
  6. updates from coda-oss and nitro

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    b00fab7 View commit details
    Browse the repository at this point in the history
  7. latest from coda-oss

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    a9d7356 View commit details
    Browse the repository at this point in the history
  8. fix coda-oss unittest dependencies

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    a22f195 View commit details
    Browse the repository at this point in the history
  9. WAF dependencies for "scene"

    Dan Smith committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    3d28513 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2021

  1. sys/Filesystem.h -> std/filesystem

    Dan Smith committed Mar 27, 2021
    Configuration menu
    Copy the full SHA
    899e615 View commit details
    Browse the repository at this point in the history
  2. build using C++17 features

    Dan Smith committed Mar 27, 2021
    Configuration menu
    Copy the full SHA
    1005fb0 View commit details
    Browse the repository at this point in the history
  3. account for removed coda-oss overloads

    Dan Smith committed Mar 27, 2021
    Configuration menu
    Copy the full SHA
    ab1348f View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 27, 2021
    Configuration menu
    Copy the full SHA
    f819681 View commit details
    Browse the repository at this point in the history
  5. add back coda_oss;;filesystem::path

    Dan Smith committed Mar 27, 2021
    Configuration menu
    Copy the full SHA
    f105c98 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 27, 2021
    Configuration menu
    Copy the full SHA
    78ec6f6 View commit details
    Browse the repository at this point in the history
  7. forgot to add new "coda_oss" directory

    Dan Smith committed Mar 27, 2021
    Configuration menu
    Copy the full SHA
    1dfc034 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'master' into develop/update_externals

    Dan Smith committed Mar 27, 2021
    Configuration menu
    Copy the full SHA
    0319e70 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Apr 3, 2021
    Configuration menu
    Copy the full SHA
    7cd31db View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2021

  1. latest from "coda-oss" and "nitro"

    Dan Smith committed Apr 5, 2021
    Configuration menu
    Copy the full SHA
    c773661 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Apr 6, 2021
    Configuration menu
    Copy the full SHA
    6c8bb00 View commit details
    Browse the repository at this point in the history
  2. tweaks to python wrappers from coda-oss

    Dan Smith committed Apr 6, 2021
    Configuration menu
    Copy the full SHA
    89898de View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2021

  1. prepare for removing some code-analysis diagnostics

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    68c6e63 View commit details
    Browse the repository at this point in the history
  2. "const" and "constexpr" as directed by code-analsysi

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    0b85d14 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a41ad42 View commit details
    Browse the repository at this point in the history
  4. prepare code-analysis for SIX

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    56d6f25 View commit details
    Browse the repository at this point in the history
  5. "const" or "constexpr" per code-analysis

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    2633e3e View commit details
    Browse the repository at this point in the history
  6. get rid of most reinterpret_cast<>s

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    55d8715 View commit details
    Browse the repository at this point in the history
  7. get rid of C-style casts

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    29dd386 View commit details
    Browse the repository at this point in the history
  8. XML parsing routines can be "const"

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    54f707f View commit details
    Browse the repository at this point in the history
  9. initialize per code-analysis

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    abb6673 View commit details
    Browse the repository at this point in the history
  10. turn on a few more code-analysis diagnostics

    Dan Smith committed Apr 10, 2021
    Configuration menu
    Copy the full SHA
    6631df0 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2021

  1. assert() that various pointers aren't NULL

    Dan Smith committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    a08cf07 View commit details
    Browse the repository at this point in the history
  2. make copy/move explicit, usually =delete

    Dan Smith committed Apr 12, 2021
    Configuration menu
    Copy the full SHA
    8ed7374 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2021

  1. Configuration menu
    Copy the full SHA
    4e0fab2 View commit details
    Browse the repository at this point in the history
  2. updates from coda-oss to remove compiler warnings

    Dan Smith committed Apr 13, 2021
    Configuration menu
    Copy the full SHA
    582f71a View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 13, 2021
    Configuration menu
    Copy the full SHA
    17291a2 View commit details
    Browse the repository at this point in the history
  4. Xerces generates a bunch of warnings

    Dan Smith committed Apr 13, 2021
    Configuration menu
    Copy the full SHA
    524f758 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    094ec20 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    37b4a36 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 13, 2021
    Configuration menu
    Copy the full SHA
    379e4cf View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    74491f1 View commit details
    Browse the repository at this point in the history
  2. latest from coda-oss

    Dan Smith committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    d30e0ab View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    b98e80b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    260e798 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e70e257 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    30d25fd View commit details
    Browse the repository at this point in the history
  7. turn on more code-analysis diagnostics

    Dan Smith committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    e846558 View commit details
    Browse the repository at this point in the history
  8. latest from coda-oss to reduce compiler warnings

    Dan Smith committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    445cf74 View commit details
    Browse the repository at this point in the history
  9. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    8d081cc View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2021

  1. fix more code-analysis diagnistics

    Dan Smith committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    5a86b03 View commit details
    Browse the repository at this point in the history
  2. more code-analysis diagnostics fixes from coda-oss

    Dan Smith committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    8e15275 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    992aede View commit details
    Browse the repository at this point in the history
  4. more code-analysis cleanup

    Dan Smith committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    6f83361 View commit details
    Browse the repository at this point in the history
  5. remove several more compiler warnings

    Dan Smith committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    a1e412b View commit details
    Browse the repository at this point in the history
  6. Multithreaded DEBUG DLL is the default

    Dan Smith committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    18606f4 View commit details
    Browse the repository at this point in the history
  7. latest from coda-oss

    Dan Smith committed Apr 17, 2021
    Configuration menu
    Copy the full SHA
    24e1ee5 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2021

  1. updates from "nitro"

    Dan Smith committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    09ffddb View commit details
    Browse the repository at this point in the history
  2. lost sys/Conf.h #include

    Dan Smith authored and Dan Smith committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    fc46c9f View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    f2920fb View commit details
    Browse the repository at this point in the history
  4. use =default for more default constructors

    Dan Smith committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    0ed977b View commit details
    Browse the repository at this point in the history
  5. tweak code-analysis

    Dan Smith committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    526e88d View commit details
    Browse the repository at this point in the history
  6. gsl::narrow<>

    Dan Smith committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    217894e View commit details
    Browse the repository at this point in the history
  7. get rid of size & signed/unsigned warnings

    Dan Smith committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    7c93cbc View commit details
    Browse the repository at this point in the history
  8. more =default for default constructors

    Dan Smith committed Apr 19, 2021
    Configuration menu
    Copy the full SHA
    8f3a4a1 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2021

  1. use std::make_unique instead of explicit new

    Dan Smith committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    1e8a3ee View commit details
    Browse the repository at this point in the history
  2. latest from coda-oss and nitro

    Dan Smith committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    0b2b871 View commit details
    Browse the repository at this point in the history
  3. latest from nitro

    Dan Smith committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    733a255 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    8592266 View commit details
    Browse the repository at this point in the history
  5. assert() that some pointers can't be NULL

    Dan Smith committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    202eb90 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2021

  1. latest from coda-oss

    Dan Smith committed Apr 26, 2021
    Configuration menu
    Copy the full SHA
    dc070a1 View commit details
    Browse the repository at this point in the history
  2. updates from "nitro"

    Dan Smith committed Apr 26, 2021
    Configuration menu
    Copy the full SHA
    5df9163 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed Apr 26, 2021
    Configuration menu
    Copy the full SHA
    3771696 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cf80ce3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    11b1816 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed May 3, 2021
    Configuration menu
    Copy the full SHA
    f20557a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9faad06 View commit details
    Browse the repository at this point in the history
  3. build w/o errors when nitf-c++ is a DLL

    Dan Smith committed May 3, 2021
    Configuration menu
    Copy the full SHA
    f273b6d View commit details
    Browse the repository at this point in the history
  4. explicitly list SegmentMemorySource() overloads

    Dan Smith committed May 3, 2021
    Configuration menu
    Copy the full SHA
    5ace9f9 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed May 4, 2021
    Configuration menu
    Copy the full SHA
    8f4b0a0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8cad4be View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bd84072 View commit details
    Browse the repository at this point in the history
  4. latest from coda-oss to get rid of more compiler warnings/code-analys…

    …is diagnostics
    Dan Smith committed May 4, 2021
    Configuration menu
    Copy the full SHA
    0591d37 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4d51caf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    83789cf View commit details
    Browse the repository at this point in the history

Commits on May 8, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed May 8, 2021
    Configuration menu
    Copy the full SHA
    2bb3a4e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4f624b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0f0795e View commit details
    Browse the repository at this point in the history
  4. allow six.ruleset to be used in other projects

    Dan Smith committed May 8, 2021
    Configuration menu
    Copy the full SHA
    f54971b View commit details
    Browse the repository at this point in the history
  5. fix a bunch of compiler warnings

    Dan Smith committed May 8, 2021
    Configuration menu
    Copy the full SHA
    d37a3c3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    86c01a1 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2021

  1. Configuration menu
    Copy the full SHA
    e32fd57 View commit details
    Browse the repository at this point in the history
  2. fix compiler warnings in six.sidd

    Dan Smith committed May 10, 2021
    Configuration menu
    Copy the full SHA
    66cf2d3 View commit details
    Browse the repository at this point in the history
  3. reduce the use of "static_cast" in client code

    Dan Smith committed May 10, 2021
    Configuration menu
    Copy the full SHA
    f4409e0 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2021

  1. build NITRO @ /W4

    Dan Smith committed May 11, 2021
    Configuration menu
    Copy the full SHA
    ef2d1fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    10b2152 View commit details
    Browse the repository at this point in the history
  3. CODA-OSS eliminates the need for /Zc:__cplusplus

    Dan Smith committed May 11, 2021
    Configuration menu
    Copy the full SHA
    2781777 View commit details
    Browse the repository at this point in the history
  4. reduce some code-analysis diagnostics from six.sicd

    Dan Smith committed May 11, 2021
    Configuration menu
    Copy the full SHA
    f96ef20 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2021

  1. utilities to reduce code duplication

    Dan Smith committed May 12, 2021
    Configuration menu
    Copy the full SHA
    c9e1879 View commit details
    Browse the repository at this point in the history
  2. fix more code-analysis diagnostics

    Dan Smith committed May 12, 2021
    Configuration menu
    Copy the full SHA
    03cdf9e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    40edc33 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50e010c View commit details
    Browse the repository at this point in the history
  5. utility routines to reduce use of static_cast<>

    Dan Smith committed May 12, 2021
    Configuration menu
    Copy the full SHA
    4b39d98 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b625897 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2021

  1. more reduction of static_cast<>

    Dan Smith committed May 15, 2021
    Configuration menu
    Copy the full SHA
    14db9b0 View commit details
    Browse the repository at this point in the history
  2. "const XMLElem" -> "const xml::lite::Element*"

    Dan Smith committed May 15, 2021
    Configuration menu
    Copy the full SHA
    08fbdd4 View commit details
    Browse the repository at this point in the history
  3. parseOptionalInt()

    Dan Smith committed May 15, 2021
    Configuration menu
    Copy the full SHA
    185e603 View commit details
    Browse the repository at this point in the history
  4. use parseOptional*() routines to reduce noisy code

    Dan Smith committed May 15, 2021
    Configuration menu
    Copy the full SHA
    8a497df View commit details
    Browse the repository at this point in the history

Commits on May 17, 2021

  1. Merge branch 'master' into develop/update_externals

    Dan Smith committed May 17, 2021
    Configuration menu
    Copy the full SHA
    0314b79 View commit details
    Browse the repository at this point in the history
  2. latest from "nitro" and "coda-oss"

    Dan Smith committed May 17, 2021
    Configuration menu
    Copy the full SHA
    df166d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a68f107 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    699613b View commit details
    Browse the repository at this point in the history

Commits on May 18, 2021

  1. simplify code with parseOptional*()

    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    c62fce9 View commit details
    Browse the repository at this point in the history
  2. more use of parseOptional*()

    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    4b54417 View commit details
    Browse the repository at this point in the history
  3. Revert "more use of parseOptional*()"

    This reverts commit 4b54417.
    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    63bbee0 View commit details
    Browse the repository at this point in the history
  4. Revert "simplify code with parseOptional*()"

    This reverts commit c62fce9.
    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    f1a4b5f View commit details
    Browse the repository at this point in the history
  5. Revert "use parseOptional*() routines to reduce noisy code"

    This reverts commit 8a497df.
    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    c6d2313 View commit details
    Browse the repository at this point in the history
  6. reduce use of getOptional()

    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    a606310 View commit details
    Browse the repository at this point in the history
  7. Revert "Revert "use parseOptional*() routines to reduce noisy code""

    This reverts commit c6d2313.
    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    b003243 View commit details
    Browse the repository at this point in the history
  8. simplify Wideband::read()

    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    ec93071 View commit details
    Browse the repository at this point in the history
  9. fix /W4 warnings in six.convert

    Dan Smith committed May 18, 2021
    Configuration menu
    Copy the full SHA
    d9715da View commit details
    Browse the repository at this point in the history

Commits on May 19, 2021

  1. fix code-analysis diagnostics from six.sicd

    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    023a7d8 View commit details
    Browse the repository at this point in the history
  2. remove a bunch of code-analysis diagnostics

    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    ae61619 View commit details
    Browse the repository at this point in the history
  3. removed more code-analysis diagnostics

    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    e0d60dd View commit details
    Browse the repository at this point in the history
  4. reduce .c_str()

    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    1531609 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'master' into develop/update_externals

    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    6a294c9 View commit details
    Browse the repository at this point in the history
  6. reduce use of .c_str() in "nitro"

    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    433aa81 View commit details
    Browse the repository at this point in the history
  7. write() takes a std::string parameter

    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    8659a64 View commit details
    Browse the repository at this point in the history
  8. simplify calling XMLControlRegistry::addCreator()

    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    13d1a05 View commit details
    Browse the repository at this point in the history
  9. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed May 19, 2021
    Configuration menu
    Copy the full SHA
    908b4c0 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2021

  1. reduce code-analysis diagnostics

    Dan Smith committed May 24, 2021
    Configuration menu
    Copy the full SHA
    3dc8fae View commit details
    Browse the repository at this point in the history
  2. reduce use of vector::size()

    Dan Smith committed May 24, 2021
    Configuration menu
    Copy the full SHA
    45e4bfc View commit details
    Browse the repository at this point in the history
  3. use range for() to reduce use of .size()

    Dan Smith committed May 24, 2021
    Configuration menu
    Copy the full SHA
    fa7bb1b View commit details
    Browse the repository at this point in the history
  4. cast not needed

    Dan Smith committed May 24, 2021
    Configuration menu
    Copy the full SHA
    ad08644 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dfb69ca View commit details
    Browse the repository at this point in the history
  6. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed May 24, 2021
    Configuration menu
    Copy the full SHA
    1ac2e8f View commit details
    Browse the repository at this point in the history
  7. Merge branch 'master' into develop/update_externals

    Dan Smith committed May 24, 2021
    Configuration menu
    Copy the full SHA
    cc2d054 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    881cd25 View commit details
    Browse the repository at this point in the history
  9. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed May 24, 2021
    Configuration menu
    Copy the full SHA
    eeb3163 View commit details
    Browse the repository at this point in the history
  10. Merge branch 'master' into develop/update_externals

    Dan Smith committed May 24, 2021
    Configuration menu
    Copy the full SHA
    9c99881 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f5e4a76 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2021

  1. compile with C++20

    Dan Smith committed May 26, 2021
    Configuration menu
    Copy the full SHA
    ad60215 View commit details
    Browse the repository at this point in the history
  2. tweaks for VS2019 16.10

    Dan Smith committed May 26, 2021
    Configuration menu
    Copy the full SHA
    4b89b4f View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed May 26, 2021
    Configuration menu
    Copy the full SHA
    659376a View commit details
    Browse the repository at this point in the history

Commits on May 27, 2021

  1. latest from nitro and coda-oss

    Dan Smith committed May 27, 2021
    Configuration menu
    Copy the full SHA
    5a8c6a5 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'develop/update_externals' into develop/fix-compiler-war…

    …nings
    Dan Smith committed May 27, 2021
    Configuration menu
    Copy the full SHA
    c06f9cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e1975b3 View commit details
    Browse the repository at this point in the history