Skip to content

Commit

Permalink
w
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Mar 31, 2024
1 parent 425b37d commit 30a24f4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
toolset: [""]
build_type: [Release]
build_type: [Release, Debug]
build_shared_libs: [OFF] # TODO(JS): Add ON once shared lib build is resolved

steps:
Expand Down
5 changes: 0 additions & 5 deletions dart/constraint/ConstraintSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,13 +403,8 @@ bool ConstraintSolver::containSkeleton(const ConstSkeletonPtr& skeleton) const
//==============================================================================
bool ConstraintSolver::hasSkeleton(const ConstSkeletonPtr& skeleton) const
{
#if _WIN32
DART_ASSERT(
skeleton != nullptr && "Not allowed to insert null pointer skeleton.");
#else
DART_ASSERT(
skeleton != nullptr, "Not allowed to insert null pointer skeleton.");
#endif

for (const auto& itrSkel : mSkeletons) {
if (itrSkel == skeleton)
Expand Down

0 comments on commit 30a24f4

Please sign in to comment.