You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scala 2.11 warns about pure expressions in statement position. This warning is incorrect for volatile reads. A volatile read has the side-effect of inserting a memory read barrier (which must not be optimized away by the JIT even when the actual read is unnecessary and can be removed).
[warn] /Users/szeiger/code/slick/src/main/scala/scala/slick/backend/DatabaseComponent.scala:190: a pure expression does nothing in statement position; you may be omitting necessary parentheses
[warn] ctx.sync
[warn] ^
The text was updated successfully, but these errors were encountered:
Scala 2.11 warns about pure expressions in statement position. This warning is incorrect for volatile reads. A volatile read has the side-effect of inserting a memory read barrier (which must not be optimized away by the JIT even when the actual read is unnecessary and can be removed).
The text was updated successfully, but these errors were encountered: