From: Adam Simpkins Date: Wed, 17 Jan 2018 18:05:24 +0000 (-0800) Subject: fix a multiline comment warning X-Git-Tag: v2018.01.22.00~18 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=commitdiff_plain;h=6c511999f92066ed84778bca4491c8d139a3195d;hp=6c511999f92066ed84778bca4491c8d139a3195d fix a multiline comment warning Summary: DeterministicScheduleTest.cpp contained several single-line C++ comments that ended in a trailing backslash. This makes the preprocessor treat the following line as a comment as well, even if it does not start with `//`. Newer versions of gcc emit warnings about this. This changes the comment in DeterministicScheduleTest.cpp to use `/* */` to avoid this issue. Reviewed By: siyengar Differential Revision: D6735672 fbshipit-source-id: 162c735507a643ce0dbee58f1f054865237e1eba ---