Skip to content

Commit

Permalink
fix typo, add clang check in concurrentqueue
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-p committed Aug 22, 2016
1 parent 61d7bdf commit ab9bb2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/concurrentqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ namespace details {
: static_cast<T>(-1);
};

#if (defined(__GNUC__) && ((__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 9)))
#if (!defined(__clang__) && defined(__GNUC__) && ((__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 9)))
typedef ::max_align_t max_align_t; // GCC forgot to add it to std:: for a while
#else
typedef std::max_align_t max_align_t; // Others (e.g. MSVC) insist it can *only* be accessed via std::
Expand Down
2 changes: 1 addition & 1 deletion src/SalmonQuantify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2384,7 +2384,7 @@ transcript abundance from RNA-seq reads
return gzw.writeBootstrap(alphas);
};

jointLog->info("Staring Bootstrapping");
jointLog->info("Starting Bootstrapping");
bool bootstrapSuccess =
optimizer.gatherBootstraps(experiment, sopt, bsWriter, 0.01, 10000);
jointLog->info("Finished Bootstrapping");
Expand Down

0 comments on commit ab9bb2f

Please sign in to comment.